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.

PACKAGE_UNZIP_COMMAND

This structure defines the file information used when performing a package unzip or local SVM update operation on the controller. It contains the name of the compressed update file to be extracted or installed locally.

BYTE#

Field Name

Data Type

Value

Remarks

0

_szFileName

char[256]

File name of the update package to unzip or install.
The maximum string length is defined by MAX_STRING_SIZE.

Total size: 256 bytes

Defined in: DRFS.h

typedef struct _PACKAGE_UNZIP_COMMAND
{
    /* file name */
    char                        _szFileName[MAX_STRING_SIZE];

} PACKAGE_UNZIP_COMMAND, *LPACKAGE_UNZIP_COMMAND;

typedef PACKAGE_UNZIP_COMMAND
    SVM_LOCAL_UPDATE, *LPSVM_LOCAL_UPDATE;