mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 22:52:54 +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:
parent
082463978d
commit
ecddd01a74
1 changed files with 3 additions and 1 deletions
|
@ -716,7 +716,8 @@ static NTSTATUS STDCALL drv_query_volume_information(IN PDEVICE_OBJECT DeviceObj
|
||||||
Status = overflow ? STATUS_BUFFER_OVERFLOW : STATUS_SUCCESS;
|
Status = overflow ? STATUS_BUFFER_OVERFLOW : STATUS_SUCCESS;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifndef __REACTOS__
|
||||||
#ifdef _MSC_VER // not in mingw yet
|
#ifdef _MSC_VER // not in mingw yet
|
||||||
case FileFsSectorSizeInformation:
|
case FileFsSectorSizeInformation:
|
||||||
{
|
{
|
||||||
|
@ -739,6 +740,7 @@ static NTSTATUS STDCALL drv_query_volume_information(IN PDEVICE_OBJECT DeviceObj
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
#endif /* __REACTOS__ */
|
||||||
|
|
||||||
default:
|
default:
|
||||||
Status = STATUS_INVALID_PARAMETER;
|
Status = STATUS_INVALID_PARAMETER;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue