Hello Timo,
+static
+NTSTATUS
+KsecQueryVolumeInformation(
+ PVOID InfoBuffer,
+ FS_INFORMATION_CLASS FsInformationClass,
+ PSIZE_T BufferLength)
+{
+ PFILE_FS_DEVICE_INFORMATION DeviceInformation;
+
+ /* Only FileFsDeviceInformation is supported */
+ if (FsInformationClass == FileFsDeviceInformation)
+ {
+ return STATUS_INVALID_INFO_CLASS;
+ }
shouldn't be that "FsInformationClass != FileFsDeviceInformation" ? ;)
Best regards,
Michael Fritscher