// portabledevice.h
typedef enum tagWPD_STORAGE_TYPE_VALUES {
WPD_STORAGE_TYPE_UNDEFINED,
WPD_STORAGE_TYPE_FIXED_ROM,
WPD_STORAGE_TYPE_REMOVABLE_ROM,
WPD_STORAGE_TYPE_FIXED_RAM,
WPD_STORAGE_TYPE_REMOVABLE_RAM
} WPD_STORAGE_TYPE_VALUES;
View the official Windows Driver Kit DDI referenceNo description available.
The WPD_STORAGE_TYPE_VALUES enumeration type describes the different Windows Portable Devices storage types.
WPD_STORAGE_TYPE_UNDEFINEDThe storage is of an undefined type.
WPD_STORAGE_TYPE_FIXED_ROMThe storage is non-removable and read-only.
WPD_STORAGE_TYPE_REMOVABLE_ROMThe storage is removable and is read-only.
WPD_STORAGE_TYPE_FIXED_RAMThe storage is non-removable and is read/write capable.
WPD_STORAGE_TYPE_REMOVABLE_RAMThe storage is removable and is read/write capable.
None.
Structures and Enumeration Types