Returns (level 0) support module information by NWGetSupportModuleInfo
typedef struct
{
nuint32 IOStatus ;
nuint32 InfoBlockSize ;
nuint32 AvailSpace ;
nuint32 UsedSpace ;
nuint8 SMInfo [MAX_SIZE_OF_SM_STRING + MAX_SIZE_OF_SM_INFO];
} SUPPORT_MODULE_INFO;
uses calwin32
SUPPORT_MODULE_INFO = packed Record
IOStatus : nuint32;
InfoBlockSize : nuint32;
AvailSpace : nuint32;
UsedSpace : nuint32; (*A length preceded string is followed by SMInfo data*)
SMInfo : Array[0..MAX_SIZE_OF_SM_STRING + MAX_SIZE_OF_SM_INFO - 1] Of nuint8
End;
Specifies the IO read and write access status of the associated storage device .
Specifies the information block size on the associated storage device.
Specifies the amount of space available on the associated storage device.
Specifies the amount of used space on the associated storage device. This length-preceded string is followed by SMInfo data.
Specifies the support-module specific data in the form of a length-preceded string.