Index: /trunk/include/iprt/nt/nt.h
===================================================================
--- /trunk/include/iprt/nt/nt.h	(revision 75877)
+++ /trunk/include/iprt/nt/nt.h	(revision 75878)
@@ -2066,4 +2066,13 @@
 NTSYSAPI NTSTATUS NTAPI NtSetInformationProcess(HANDLE, PROCESSINFOCLASS, PVOID, ULONG);
 NTSYSAPI NTSTATUS NTAPI NtTerminateProcess(HANDLE, LONG);
+
+/** Returned by NtQUerySection with SectionBasicInformation. */
+typedef struct _SECTION_BASIC_INFORMATION
+{
+    PVOID            BaseAddress;
+    ULONG            AllocationAttributes;
+    LARGE_INTEGER    MaximumSize;
+} SECTION_BASIC_INFORMATION;
+typedef SECTION_BASIC_INFORMATION *PSECTION_BASIC_INFORMATION;
 
 /** Retured by ProcessImageInformation as well as NtQuerySection. */
Index: /trunk/src/VBox/Runtime/r3/win/ntdll-mini-implib.def
===================================================================
--- /trunk/src/VBox/Runtime/r3/win/ntdll-mini-implib.def	(revision 75877)
+++ /trunk/src/VBox/Runtime/r3/win/ntdll-mini-implib.def	(revision 75878)
@@ -69,4 +69,5 @@
     NtQueryKey                            ;;= _NtQueryKey@20
     NtQueryObject                         ;;= _NtQueryObject@20
+    NtQuerySection                        ;;= _NtQuerySection@20
     NtQuerySecurityObject                 ;;= _NtQuerySecurityObject@20
     NtQuerySymbolicLinkObject             ;;= _NtQuerySymbolicLinkObject@12
