mirror of
https://github.com/reactos/reactos.git
synced 2025-06-04 08:50:27 +00:00
[PSDK]
Add FSCTL for dirty bit read svn path=/trunk/; revision=75763
This commit is contained in:
parent
fae06a9723
commit
a81f0507f2
1 changed files with 15 additions and 0 deletions
|
@ -627,6 +627,21 @@ typedef struct {
|
|||
((t)==PARTITION_EXTENDED)||\
|
||||
((t)==PARTITION_XINT13_EXTENDED))
|
||||
|
||||
#ifndef _FILESYSTEMFSCTL_
|
||||
#define _FILESYSTEMFSCTL_
|
||||
|
||||
#if (_WIN32_WINNT >= _WIN32_WINNT_NT4)
|
||||
#define FSCTL_IS_VOLUME_DIRTY CTL_CODE(FILE_DEVICE_FILE_SYSTEM, 30, METHOD_BUFFERED, FILE_ANY_ACCESS)
|
||||
#endif
|
||||
|
||||
#if (_WIN32_WINNT >= _WIN32_WINNT_WIN2K)
|
||||
#define VOLUME_IS_DIRTY (0x00000001)
|
||||
#define VOLUME_UPGRADE_SCHEDULED (0x00000002)
|
||||
#define VOLUME_SESSION_OPEN (0x00000004)
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#pragma warning(pop)
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue