VDS_STORAGE_POOL_DRIVE_EXTENT structure (vds.h)

[Beginning with Windows 8 and Windows Server 2012, the Virtual Disk Service COM interface is superseded by the Windows Storage Management API.]

Defines a drive extent that could be used by a storage pool.

Syntax

typedef struct _VDS_STORAGE_POOL_DRIVE_EXTENT {
  VDS_OBJECT_ID id;
  ULONGLONG     ullSize;
  BOOL          bUsed;
} VDS_STORAGE_POOL_DRIVE_EXTENT, *PVDS_STORAGE_POOL_DRIVE_EXTENT;

Members

id

A VDS_OBJECT_ID value that identifies the drive object.

ullSize

Size, in bytes, of the drive extent.

bUsed

TRUE if the drive extent is currently being used by the storage pool, FALSE otherwise.

Requirements

Requirement Value
Minimum supported client Windows 7 [desktop apps only]
Minimum supported server Windows Server 2008 R2 [desktop apps only]
Header vds.h

See also

IVdsStoragePool::QueryDriveExtents

VDS_DRIVE_PROP