VDS_PACK_STATUS enumeration (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 the set of object status values for a pack.

Syntax

typedef enum _VDS_PACK_STATUS {
  VDS_PS_UNKNOWN = 0,
  VDS_PS_ONLINE = 1,
  VDS_PS_OFFLINE = 4
} VDS_PACK_STATUS;

Constants

 
VDS_PS_UNKNOWN
Value: 0
This value is reserved.
VDS_PS_ONLINE
Value: 1
The pack is available.
VDS_PS_OFFLINE
Value: 4
The pack is unavailable; the disks in the pack are not accessible.

Remarks

The VDS_PACK_PROP structure includes a VDS_PACK_STATUS value as a member to indicate the current status of a pack.

Note  Additional constants might be added to the VDS_PACK_STATUS enumeration in future Windows versions. For this reason, your application must be designed to gracefully handle an unrecognized VDS_PACK_STATUS enumeration constant.
 

Requirements

Requirement Value
Minimum supported client Windows Vista [desktop apps only]
Minimum supported server Windows Server 2003 [desktop apps only]
Header vds.h

See also

VDS Enumerations

VDS_PACK_PROP