- Timestamp:
- Nov 10, 2016 3:24:35 PM (8 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/nt/nt.h
r64594 r64638 40 40 # define NtQueryInformationProcess ZwQueryInformationProcess 41 41 # define NtQueryInformationThread ZwQueryInformationThread 42 # define NtQueryFullAttributesFile ZwQueryFullAttributesFile 42 43 # define NtQuerySystemInformation ZwQuerySystemInformation 43 44 # define NtQuerySecurityObject ZwQuerySecurityObject … … 1539 1540 } FILE_NAME_INFORMATION; 1540 1541 typedef FILE_NAME_INFORMATION *PFILE_NAME_INFORMATION; 1542 typedef struct _FILE_NETWORK_OPEN_INFORMATION 1543 { 1544 LARGE_INTEGER CreationTime; 1545 LARGE_INTEGER LastAccessTime; 1546 LARGE_INTEGER LastWriteTime; 1547 LARGE_INTEGER ChangeTime; 1548 LARGE_INTEGER AllocationSize; 1549 LARGE_INTEGER EndOfFile; 1550 ULONG FileAttributes; 1551 } FILE_NETWORK_OPEN_INFORMATION; 1552 typedef FILE_NETWORK_OPEN_INFORMATION *PFILE_NETWORK_OPEN_INFORMATION; 1541 1553 typedef enum _FILE_INFORMATION_CLASS 1542 1554 { … … 1610 1622 FILE_INFORMATION_CLASS, BOOLEAN, PUNICODE_STRING, BOOLEAN); 1611 1623 NTSYSAPI NTSTATUS NTAPI NtSetInformationFile(HANDLE, PIO_STATUS_BLOCK, PVOID, ULONG, FILE_INFORMATION_CLASS); 1612 1624 #endif /* IPRT_NT_USE_WINTERNL */ 1625 NTSYSAPI NTSTATUS NTAPI NtQueryAttributesFile(POBJECT_ATTRIBUTES, PFILE_BASIC_INFORMATION); 1626 NTSYSAPI NTSTATUS NTAPI NtQueryFullAttributesFile(POBJECT_ATTRIBUTES, PFILE_NETWORK_OPEN_INFORMATION); 1627 1628 #ifdef IPRT_NT_USE_WINTERNL 1613 1629 1614 1630 /** For use with KeyBasicInformation. */ -
trunk/src/VBox/Runtime/r3/win/ntdll-mini-implib.def
r64594 r64638 57 57 NtOpenThreadToken ;;= _NtOpenThreadToken@16 58 58 NtProtectVirtualMemory ;;= _NtProtectVirtualMemory@20 59 NtQueryAttributesFile ;;= _NtQueryAttributesFile@8 59 60 NtQueryDirectoryFile ;;= _NtQueryDirectoryFile@44 60 61 NtQueryDirectoryObject ;;= _NtQueryDirectoryObject@28 62 NtQueryFullAttributesFile ;;= _NtQueryFullAttributesFile@8 61 63 NtQueryEvent ;;= _NtQueryEvent@20 62 64 NtQueryInformationFile ;;= _NtQueryInformationFile@20
Note:
See TracChangeset
for help on using the changeset viewer.