You're reading the documentation for an older, but still supported version (GL013300).
For information on the latest version, please have a look at GL013301.

SYSTEM_DISKSIZE

This structure provides information about the controller’s storage capacity and usage.

BYTE#

Field Name

Data Type

Value

Remarks

0

_iTotalDiskSize

unsigned int

Total disk size (in MB)

4

_iUsedDiskSize

unsigned int

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;