update for HEAD-2003021201
[reactos.git] / ntoskrnl / dbg / kdb.h
1 #define NTOS_MODE_KERNEL
2 #include <ntos.h>
3
4 NTSTATUS
5 LdrGetAddressInformation(IN PIMAGE_SYMBOL_INFO  SymbolInfo,
6   IN ULONG_PTR  RelativeAddress,
7   OUT PULONG LineNumber,
8   OUT PCH FileName  OPTIONAL,
9   OUT PCH FunctionName  OPTIONAL);
10
11 ULONG
12 KdbTryGetCharKeyboard(VOID);
13 VOID
14 KdbEnter(VOID);
15 VOID
16 DbgRDebugInit(VOID);
17 VOID
18 DbgShowFiles(VOID);
19 VOID
20 DbgEnableFile(PCH Filename);
21 VOID
22 DbgDisableFile(PCH Filename);
23 VOID
24 KdbInitProfiling();
25 VOID
26 KdbInitProfiling2();
27 VOID
28 KdbDisableProfiling();
29 VOID
30 KdbEnableProfiling();
31 VOID
32 KdbProfileInterrupt(ULONG_PTR Eip);