SYSTEM_DISKSIZE
This structure provides information about the controller’s storage capacity and usage.
BYTE# |
Field Name |
Data Type |
Value |
Remarks |
|---|---|---|---|---|
0 |
|
|
Total disk size (in MB) |
|
4 |
|
|
Used disk size (in MB) |
Total size: 8 bytes
Defined in: DRFS.h
typedef struct _SYSTEM_DISKSIZE
{
/* total disk size */
unsigned int _iTotalDiskSize;
/* used disk size */
unsigned int _iUsedDiskSize;
} SYSTEM_DISKSIZE, *LPSYSTEM_DISKSIZE;