- We now tell WinDBG to load kernel symbols and WinDBG replies (!) with DbgKdGetVersi...
[reactos.git] / reactos / ntoskrnl / kd64 / kdprint.c
index 9ec0c94..16e0f17 100644 (file)
@@ -12,8 +12,6 @@
 #define NDEBUG\r
 #include <debug.h>\r
 \r
-CHAR KdpMessageBuffer[4096];\r
-\r
 /* FUNCTIONS *****************************************************************/\r
 \r
 BOOLEAN\r
@@ -68,8 +66,8 @@ KdpCommandString(IN ULONG Length,
 \r
 ULONG\r
 NTAPI\r
-KdpSymbol(IN LPSTR DllPath,\r
-          IN ULONG DllBase,\r
+KdpSymbol(IN PSTRING DllPath,\r
+          IN PKD_SYMBOLS_INFO DllBase,\r
           IN BOOLEAN Unload,\r
           IN KPROCESSOR_MODE PreviousMode,\r
           IN PCONTEXT ContextRecord,\r
@@ -93,15 +91,11 @@ KdpSymbol(IN LPSTR DllPath,
                   sizeof(CONTEXT));\r
 \r
     /* Report the new state */\r
-#if 0\r
     Status = KdpReportLoadSymbolsStateChange(DllPath,\r
                                              DllBase,\r
                                              Unload,\r
                                              &Prcb->ProcessorState.\r
                                              ContextFrame);\r
-#else\r
-    Status = FALSE;\r
-#endif\r
 \r
     /* Now restore the processor state, manually again. */\r
     RtlCopyMemory(ContextRecord,\r