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.
For information on the latest version, please have a look at GL013301.
PACKAGE_UNZIP_RESPONSE
This structure represents the response data after performing a package unzip operation on the controller. It contains the result status and the directory name where the package was extracted.
BYTE# |
Field Name |
Data Type |
Value |
Remarks |
|---|---|---|---|---|
0 |
|
|
0 ~ 1 |
Result of the unzip operation |
1 |
|
|
Directory name or path where the package was extracted. |
Total size: 257 bytes
Defined in: DRFS.h
typedef struct _PACKAGE_UNZIP_RESPONSE
{
/* 0: fail, 1: success */
unsigned char _iResult;
/* file name */
char _szDirName[MAX_STRING_SIZE];
} PACKAGE_UNZIP_RESPONSE, *LPACKAGE_UNZIP_RESPONSE;