ntdll: Define a couple more information classes.

This commit is contained in:
Michael Müller 2015-02-26 05:27:14 +01:00 committed by Alexandre Julliard
parent 3c5387da05
commit 64c48d0e63
2 changed files with 28 additions and 20 deletions

View File

@ -2196,20 +2196,22 @@ NTSTATUS WINAPI NtQueryInformationFile( HANDLE hFile, PIO_STATUS_BLOCK io,
0, /* FileIdFullDirectoryInformation */
0, /* FileValidDataLengthInformation */
0, /* FileShortNameInformation */
0,
0,
0,
0, /* FileIoCompletionNotificationInformation, */
0, /* FileIoStatusBlockRangeInformation */
0, /* FileIoPriorityHintInformation */
0, /* FileSfioReserveInformation */
0, /* FileSfioVolumeInformation */
0, /* FileHardLinkInformation */
0,
0, /* FileProcessIdsUsingFileInformation */
0, /* FileNormalizedNameInformation */
0,
0, /* FileNetworkPhysicalNameInformation */
0, /* FileIdGlobalTxDirectoryInformation */
0,
0,
0,
0 /* FileStandardLinkInformation */
0, /* FileIsRemoteDeviceInformation */
0, /* FileAttributeCacheInformation */
0, /* FileNumaNodeInformation */
0, /* FileStandardLinkInformation */
0, /* FileRemoteProtocolInformation */
0, /* FileReplaceCompletionInformation */
};
struct stat st;

View File

@ -412,17 +412,23 @@ typedef enum _FILE_INFORMATION_CLASS {
FileIdBothDirectoryInformation,
FileIdFullDirectoryInformation,
FileValidDataLengthInformation,
FileShortNameInformation = 40,
/* 41, 42, 43 undocumented */
FileSfioReserveInformation = 44,
FileSfioVolumeInformation = 45,
FileHardLinkInformation = 46,
/* 47 undocumented */
FileNormalizedNameInformation = 48,
/* 49 undocumented */
FileIdGlobalTxDirectoryInformation = 50,
/* 51, 52, 53 undocumented */
FileStandardLinkInformation = 54,
FileShortNameInformation,
FileIoCompletionNotificationInformation,
FileIoStatusBlockRangeInformation,
FileIoPriorityHintInformation,
FileSfioReserveInformation,
FileSfioVolumeInformation,
FileHardLinkInformation,
FileProcessIdsUsingFileInformation,
FileNormalizedNameInformation,
FileNetworkPhysicalNameInformation,
FileIdGlobalTxDirectoryInformation,
FileIsRemoteDeviceInformation,
FileAttributeCacheInformation,
FileNumaNodeInformation,
FileStandardLinkInformation,
FileRemoteProtocolInformation,
FileReplaceCompletionInformation,
FileMaximumInformation
} FILE_INFORMATION_CLASS, *PFILE_INFORMATION_CLASS;