wintun: use proper import type for undocumented functions

Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
This commit is contained in:
Jason A. Donenfeld 2020-11-03 14:42:18 +01:00
parent 080b6896e0
commit d5dc79255d

View File

@ -31,11 +31,16 @@ typedef struct _SYSTEM_HANDLE_INFORMATION_EX
SYSTEM_HANDLE_TABLE_ENTRY_INFO_EX Handles[ANYSIZE_ARRAY]; SYSTEM_HANDLE_TABLE_ENTRY_INFO_EX Handles[ANYSIZE_ARRAY];
} SYSTEM_HANDLE_INFORMATION_EX, *PSYSTEM_HANDLE_INFORMATION_EX; } SYSTEM_HANDLE_INFORMATION_EX, *PSYSTEM_HANDLE_INFORMATION_EX;
extern NTSTATUS NTSYSAPI
NTSTATUS
NTAPI
ZwQuerySystemInformation( ZwQuerySystemInformation(
SYSTEM_INFORMATION_CLASS SystemInformationClass, SYSTEM_INFORMATION_CLASS SystemInformationClass,
PVOID SystemInformation, PVOID SystemInformation,
ULONG SystemInformationLength, ULONG SystemInformationLength,
ULONG *ReturnLength); ULONG *ReturnLength);
extern NTSTATUS ZwYieldExecution(VOID); NTSYSAPI
NTSTATUS
NTAPI
ZwYieldExecution(VOID);