#include "precomp.h"
#include <winnls.h>
Go to the source code of this file.
◆ FN_NtGetCurrentProcessorNumberEx
◆ START_TEST()
Definition at line 19 of file NtGetCurrentProcessorNumberEx.c.
20{
23
27 {
28 skip(
"NtGetCurrentProcessorNumberEx is not available\n");
29 return;
30 }
31
32 memset(&ProcessorNumber, 0xAA,
sizeof(ProcessorNumber));
35 ok(ProcessorNumber.Group < 64,
"Processor group is out of range");
36 ok(ProcessorNumber.Number < 64,
"Processor number is out of range");
37 ok(ProcessorNumber.Reserved == 0,
"Reserved field is not zero");
38
41
44}
FN_NtGetCurrentProcessorNumberEx * pNtGetCurrentProcessorNumberEx
NTSTATUS NTAPI FN_NtGetCurrentProcessorNumberEx(_Out_ PPROCESSOR_NUMBER)
#define ok_eq_hex(value, expected)
#define GetProcAddress(x, y)
HMODULE WINAPI DECLSPEC_HOTPATCH GetModuleHandleA(LPCSTR lpModuleName)
#define STATUS_ACCESS_VIOLATION
◆ pNtGetCurrentProcessorNumberEx