| 1815 | * BEGIN |
| 1816 | */ |
| 1817 | typedef struct _IO_STATUS_BLOCK { |
| 1818 | union { |
| 1819 | NTSTATUS Status; |
| 1820 | PVOID Pointer; |
| 1821 | } DUMMYUNIONNAME; |
| 1822 | |
| 1823 | ULONG_PTR Information; |
| 1824 | } IO_STATUS_BLOCK, *PIO_STATUS_BLOCK; |
| 1825 | |
| 1826 | NTSYSCALLAPI NTSTATUS NTAPI NtQueryInformationFile( |
| 1827 | _In_ HANDLE FileHandle, _Out_ PIO_STATUS_BLOCK IoStatusBlock, |
nothing calls this directly
no outgoing calls
no test coverage detected