// winioctl.h
typedef struct _STORAGE_ADAPTER_SERIAL_NUMBER {
DWORD Version;
DWORD Size;
WCHAR SerialNumber[STORAGE_ADAPTER_SERIAL_NUMBER_V1_MAX_LENGTH];
} STORAGE_ADAPTER_SERIAL_NUMBER, *PSTORAGE_ADAPTER_SERIAL_NUMBER;
View the official Win32 API reference
No description available.
The NULL-terminated Unicode string of the adapter serial number for the StorageAdapterSerialNumberProperty as defined in STORAGE_PROPERTY_ID.
Version
The version of this structure. The Size serves as the version.
Size
The size of this structure.
SerialNumber
The serial number.