mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 17:51:40 +00:00
[NDK] Add definitions for system partition and disk information classes (#7895)
Add definitions for SystemSystemPartitionInformation and SystemSystemDiskInformation classes.
This commit is contained in:
parent
7026466324
commit
26e0a5472f
1 changed files with 16 additions and 0 deletions
|
@ -312,6 +312,8 @@ typedef enum _SYSTEM_INFORMATION_CLASS
|
|||
SystemCoverageInformation,
|
||||
SystemPrefetchPathInformation,
|
||||
SystemVerifierFaultsInformation,
|
||||
SystemSystemPartitionInformation,
|
||||
SystemSystemDiskInformation,
|
||||
MaxSystemInfoClass,
|
||||
} SYSTEM_INFORMATION_CLASS;
|
||||
|
||||
|
@ -1460,6 +1462,20 @@ typedef struct _SYSTEM_BOOT_ENVIRONMENT_V1
|
|||
|
||||
// FIXME: Class 91-97
|
||||
|
||||
#if (NTDDI_VERSION >= NTDDI_VISTA)
|
||||
// Class 98
|
||||
typedef struct _SYSTEM_SYSTEM_PARTITION_INFORMATION
|
||||
{
|
||||
UNICODE_STRING SystemPartition;
|
||||
} SYSTEM_SYSTEM_PARTITION_INFORMATION, *PSYSTEM_SYSTEM_PARTITION_INFORMATION;
|
||||
|
||||
// Class 99
|
||||
typedef struct _SYSTEM_SYSTEM_DISK_INFORMATION
|
||||
{
|
||||
UNICODE_STRING SystemDisk;
|
||||
} SYSTEM_SYSTEM_DISK_INFORMATION, *PSYSTEM_SYSTEM_DISK_INFORMATION;
|
||||
#endif
|
||||
|
||||
//
|
||||
// Hotpatch flags
|
||||
//
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue