mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
Forgot to update a prototype in here. Also, a while ago, I stopped getting
the LDR_MODULE definition, so I fixed that. svn path=/trunk/; revision=11725
This commit is contained in:
parent
25dc91ca69
commit
110f1eeb5e
1 changed files with 5 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
/* $Id: kd.h,v 1.27 2004/08/26 16:04:50 blight Exp $
|
||||
/* $Id: kd.h,v 1.28 2004/11/20 22:21:35 arty Exp $
|
||||
*
|
||||
* kernel debugger prototypes
|
||||
*/
|
||||
|
@ -8,6 +8,7 @@
|
|||
|
||||
#include <internal/ke.h>
|
||||
#include <internal/ldr.h>
|
||||
#include <ntdll/ldr.h>
|
||||
|
||||
#define KD_DEBUG_DISABLED 0x00
|
||||
#define KD_DEBUG_GDB 0x01
|
||||
|
@ -154,8 +155,10 @@ KdbSymPrintAddress(IN PVOID Address);
|
|||
|
||||
KD_CONTINUE_TYPE
|
||||
KdbEnterDebuggerException(PEXCEPTION_RECORD ExceptionRecord,
|
||||
KPROCESSOR_MODE PreviousMode,
|
||||
PCONTEXT Context,
|
||||
PKTRAP_FRAME TrapFrame);
|
||||
PKTRAP_FRAME TrapFrame,
|
||||
BOOLEAN HandleAlways);
|
||||
|
||||
#endif /* KDBG */
|
||||
|
||||
|
|
Loading…
Reference in a new issue