From e06d6555f62d62790a72833cfd94745312e39a43 Mon Sep 17 00:00:00 2001 From: Bert Belder Date: Mon, 4 Sep 2017 05:08:38 +0200 Subject: [PATCH] nt: dynamically import RtlNtStatusToDosError --- src/nt.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/nt.h b/src/nt.h index fac3919..a033888 100644 --- a/src/nt.h +++ b/src/nt.h @@ -32,6 +32,7 @@ typedef VOID(NTAPI* PIO_APC_ROUTINE)(PVOID ApcContext, ULONG InputBufferLength, \ PVOID OutputBuffer, \ ULONG OutputBufferLength)) \ + X(ULONG, WINAPI, RtlNtStatusToDosError, (NTSTATUS Status)) #define X(return_type, declarators, name, parameters) \ extern return_type(declarators* name) parameters;