diff --git a/src/win/winapi.c b/src/win/winapi.c index 80c3e521..ab5513ab 100644 --- a/src/win/winapi.c +++ b/src/win/winapi.c @@ -25,11 +25,15 @@ #include "internal.h" +/* Ntdll function pointers */ sRtlNtStatusToDosError pRtlNtStatusToDosError; sNtDeviceIoControlFile pNtDeviceIoControlFile; sNtQueryInformationFile pNtQueryInformationFile; sNtSetInformationFile pNtSetInformationFile; sNtQuerySystemInformation pNtQuerySystemInformation; + + +/* Kernel32 function pointers */ sGetQueuedCompletionStatusEx pGetQueuedCompletionStatusEx; sSetFileCompletionNotificationModes pSetFileCompletionNotificationModes; sCreateSymbolicLinkW pCreateSymbolicLinkW; diff --git a/src/win/winapi.h b/src/win/winapi.h index 2f57e39b..df1e822b 100644 --- a/src/win/winapi.h +++ b/src/win/winapi.h @@ -4419,7 +4419,7 @@ typedef VOID (WINAPI* sReleaseSRWLockExclusive) -/* Ntapi function pointers */ +/* Ntdll function pointers */ extern sRtlNtStatusToDosError pRtlNtStatusToDosError; extern sNtDeviceIoControlFile pNtDeviceIoControlFile; extern sNtQueryInformationFile pNtQueryInformationFile;