11#define ok_eq_print_test(testid, value, expected, spec) \
12 ok((value) == (expected), "In test %lu: " #value " = " spec ", expected " spec "\n", testid, value, expected)
14#define ok_eq_hex_test(testid, value, expected) \
15 ok_eq_print_test(testid, value, expected, "0x%08lx")
17#define ok_neq_print_test(testid, value, expected, spec) \
18 ok((value) != (expected), "In test %lu: " #value " = " spec ", expected != " spec "\n", testid, value, expected)
20#define ok_neq_hex_test(testid, value, expected) \
21 ok_neq_print_test(testid, value, expected, "0x%08lx")
25(
NTAPI *pKdRefreshDebuggerNotPresent)(
VOID);
28(
NTAPI *pKdSystemDebugControl)(
43 return pKdSystemDebugControl(
Command,
75 if (
skip(IsNT52SP1OrHigher,
"KdSystemDebugControl() only exists on NT 5.2 SP1 and higher\n"))
87 ok(!!pKdRefreshDebuggerNotPresent,
88 "KdRefreshDebuggerNotPresent() unavailable but OS is NT 5.2 SP1 or higher?\n");
92 if (
skip(!!pKdSystemDebugControl,
"KdSystemDebugControl() unavailable but OS is NT 5.2 SP1 or higher?\n"))
97 IsDebuggerActive = (pKdRefreshDebuggerNotPresent
98 ? !pKdRefreshDebuggerNotPresent()
101 trace(
"Debugger is %s\n", IsDebuggerActive ?
"active" :
"inactive");
107 if (!IsVistaOrHigher || IsDebuggerActive)
134 if (!IsVistaOrHigher || IsDebuggerActive)
144 if (!IsVistaOrHigher || IsDebuggerActive)
#define ok_eq_hex_test(testid, value, expected)
_In_ PVOID _In_ ULONG _Out_ PVOID _In_ ULONG _Inout_ PULONG ReturnLength
static NTSTATUS TestSystemDebugControl(_In_ SYSDBG_COMMAND Command)
#define ok_neq_hex_test(testid, value, expected)
_In_ PVOID _In_ ULONG _Out_ PVOID OutputBuffer
_In_ PVOID _In_ ULONG InputBufferLength
_In_ PVOID _In_ ULONG _Out_ PVOID _In_ ULONG _Inout_ PULONG _In_ KPROCESSOR_MODE PreviousMode
_In_ PVOID _In_ ULONG _Out_ PVOID _In_ ULONG OutputBufferLength
#define NT_SUCCESS(StatCode)
NTSTATUS NTAPI RtlGetVersion(IN OUT PRTL_OSVERSIONINFOW lpVersionInformation)
NTSTATUS NTAPI KdSystemDebugControl(_In_ SYSDBG_COMMAND Command, _In_reads_bytes_(InputBufferLength) PVOID InputBuffer, _In_ ULONG InputBufferLength, _Out_writes_bytes_(OutputBufferLength) PVOID OutputBuffer, _In_ ULONG OutputBufferLength, _Out_opt_ PULONG ReturnLength, _In_ KPROCESSOR_MODE PreviousMode)
Perform various queries to the kernel debugger.
#define STATUS_DEBUGGER_INACTIVE
enum _SYSDBG_COMMAND SYSDBG_COMMAND
NTSYSAPI VOID NTAPI RtlInitUnicodeString(PUNICODE_STRING DestinationString, PCWSTR SourceString)
#define STATUS_INVALID_INFO_CLASS
ULONG dwOSVersionInfoSize
PVOID NTAPI MmGetSystemRoutineAddress(IN PUNICODE_STRING SystemRoutineName)
#define KD_DEBUGGER_NOT_PRESENT