Commit 64c48d0e authored by Michael Müller's avatar Michael Müller Committed by Alexandre Julliard

ntdll: Define a couple more information classes.

parent 3c5387da
...@@ -2196,20 +2196,22 @@ NTSTATUS WINAPI NtQueryInformationFile( HANDLE hFile, PIO_STATUS_BLOCK io, ...@@ -2196,20 +2196,22 @@ NTSTATUS WINAPI NtQueryInformationFile( HANDLE hFile, PIO_STATUS_BLOCK io,
0, /* FileIdFullDirectoryInformation */ 0, /* FileIdFullDirectoryInformation */
0, /* FileValidDataLengthInformation */ 0, /* FileValidDataLengthInformation */
0, /* FileShortNameInformation */ 0, /* FileShortNameInformation */
0, 0, /* FileIoCompletionNotificationInformation, */
0, 0, /* FileIoStatusBlockRangeInformation */
0, 0, /* FileIoPriorityHintInformation */
0, /* FileSfioReserveInformation */ 0, /* FileSfioReserveInformation */
0, /* FileSfioVolumeInformation */ 0, /* FileSfioVolumeInformation */
0, /* FileHardLinkInformation */ 0, /* FileHardLinkInformation */
0, 0, /* FileProcessIdsUsingFileInformation */
0, /* FileNormalizedNameInformation */ 0, /* FileNormalizedNameInformation */
0, 0, /* FileNetworkPhysicalNameInformation */
0, /* FileIdGlobalTxDirectoryInformation */ 0, /* FileIdGlobalTxDirectoryInformation */
0, 0, /* FileIsRemoteDeviceInformation */
0, 0, /* FileAttributeCacheInformation */
0, 0, /* FileNumaNodeInformation */
0 /* FileStandardLinkInformation */ 0, /* FileStandardLinkInformation */
0, /* FileRemoteProtocolInformation */
0, /* FileReplaceCompletionInformation */
}; };
struct stat st; struct stat st;
......
...@@ -412,17 +412,23 @@ typedef enum _FILE_INFORMATION_CLASS { ...@@ -412,17 +412,23 @@ typedef enum _FILE_INFORMATION_CLASS {
FileIdBothDirectoryInformation, FileIdBothDirectoryInformation,
FileIdFullDirectoryInformation, FileIdFullDirectoryInformation,
FileValidDataLengthInformation, FileValidDataLengthInformation,
FileShortNameInformation = 40, FileShortNameInformation,
/* 41, 42, 43 undocumented */ FileIoCompletionNotificationInformation,
FileSfioReserveInformation = 44, FileIoStatusBlockRangeInformation,
FileSfioVolumeInformation = 45, FileIoPriorityHintInformation,
FileHardLinkInformation = 46, FileSfioReserveInformation,
/* 47 undocumented */ FileSfioVolumeInformation,
FileNormalizedNameInformation = 48, FileHardLinkInformation,
/* 49 undocumented */ FileProcessIdsUsingFileInformation,
FileIdGlobalTxDirectoryInformation = 50, FileNormalizedNameInformation,
/* 51, 52, 53 undocumented */ FileNetworkPhysicalNameInformation,
FileStandardLinkInformation = 54, FileIdGlobalTxDirectoryInformation,
FileIsRemoteDeviceInformation,
FileAttributeCacheInformation,
FileNumaNodeInformation,
FileStandardLinkInformation,
FileRemoteProtocolInformation,
FileReplaceCompletionInformation,
FileMaximumInformation FileMaximumInformation
} FILE_INFORMATION_CLASS, *PFILE_INFORMATION_CLASS; } FILE_INFORMATION_CLASS, *PFILE_INFORMATION_CLASS;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment