mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 01:39:30 +00:00
merge r43777 from amd64 branch
svn path=/trunk/; revision=43800
This commit is contained in:
parent
b53f1051ec
commit
0cf8717f6d
1 changed files with 8 additions and 1 deletions
|
@ -10417,7 +10417,14 @@ DbgSetDebugFilterState(
|
|||
|
||||
#endif /* !DBG */
|
||||
|
||||
#if defined(_NTDDK_) || defined(_NTHAL_) || defined(_WDMDDK_) || defined(_NTOSP_)
|
||||
#if defined(__GNUC__)
|
||||
|
||||
extern NTKERNELAPI BOOLEAN KdDebuggerNotPresent;
|
||||
extern NTKERNELAPI BOOLEAN KdDebuggerEnabled;
|
||||
#define KD_DEBUGGER_ENABLED KdDebuggerEnabled
|
||||
#define KD_DEBUGGER_NOT_PRESENT KdDebuggerNotPresent
|
||||
|
||||
#elif defined(_NTDDK_) || defined(_NTHAL_) || defined(_WDMDDK_) || defined(_NTOSP_)
|
||||
|
||||
extern NTKERNELAPI PBOOLEAN KdDebuggerNotPresent;
|
||||
extern NTKERNELAPI PBOOLEAN KdDebuggerEnabled;
|
||||
|
|
Loading…
Reference in a new issue