// 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 referenceNo description available.
The NULL-terminated Unicode string of the adapter serial number for the StorageAdapterSerialNumberProperty as defined in STORAGE_PROPERTY_ID.
VersionThe version of this structure. The Size serves as the version.
SizeThe size of this structure.
SerialNumberThe serial number.