mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 19:26:32 +00:00
[BTRFS]: Fix compilation with MSVC too, as we don't have the 'FileFsSectorSizeInformation' FS information class in our headers (this is some Win8+ stuff).
CORE-12223 #comment MSVC compilation fixed in r73078 ('FileFsSectorSizeInformation' absent in our headers).
svn path=/trunk/; revision=73078
This commit is contained in:
@@ -716,7 +716,8 @@ static NTSTATUS STDCALL drv_query_volume_information(IN PDEVICE_OBJECT DeviceObj
|
||||
Status = overflow ? STATUS_BUFFER_OVERFLOW : STATUS_SUCCESS;
|
||||
break;
|
||||
}
|
||||
|
||||
|
||||
#ifndef __REACTOS__
|
||||
#ifdef _MSC_VER // not in mingw yet
|
||||
case FileFsSectorSizeInformation:
|
||||
{
|
||||
@@ -739,6 +740,7 @@ static NTSTATUS STDCALL drv_query_volume_information(IN PDEVICE_OBJECT DeviceObj
|
||||
break;
|
||||
}
|
||||
#endif
|
||||
#endif /* __REACTOS__ */
|
||||
|
||||
default:
|
||||
Status = STATUS_INVALID_PARAMETER;
|
||||
|
||||
Reference in New Issue
Block a user