X-Git-Url: https://wimlib.net/git/?p=wimlib;a=blobdiff_plain;f=src%2Fwin32_common.c;h=1768fd9bd5076371351c1e5f8fad4ac0ac4966ce;hp=9f5c72f1647b742f9e93f7f806a557a89974b0f4;hb=117e52b79b02f1889f1bccd9d8560b73a965c559;hpb=b23593f41ec8aa40044b4bf7527736c5071a42df diff --git a/src/win32_common.c b/src/win32_common.c index 9f5c72f1..1768fd9b 100644 --- a/src/win32_common.c +++ b/src/win32_common.c @@ -565,6 +565,12 @@ NTSTATUS (WINAPI *func_NtQueryDirectoryFile) (HANDLE FileHandle, PUNICODE_STRING FileName, BOOLEAN RestartScan); +NTSTATUS (WINAPI *func_NtQueryVolumeInformationFile) (HANDLE FileHandle, + PIO_STATUS_BLOCK IoStatusBlock, + PVOID FsInformation, + ULONG Length, + FS_INFORMATION_CLASS FsInformationClass); + NTSTATUS (WINAPI *func_NtSetSecurityObject)(HANDLE Handle, SECURITY_INFORMATION SecurityInformation, PSECURITY_DESCRIPTOR SecurityDescriptor); @@ -615,6 +621,7 @@ struct dll_spec ntdll_spec = { DLL_SYM(NtQueryInformationFile, true), DLL_SYM(NtQuerySecurityObject, true), DLL_SYM(NtQueryDirectoryFile, true), + DLL_SYM(NtQueryVolumeInformationFile, true), DLL_SYM(NtSetSecurityObject, true), DLL_SYM(NtClose, true), DLL_SYM(RtlNtStatusToDosError, true),