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.
LICENSE_TEXT_PARAM
This structure defines the license key information used by the robot controller. It specifies whether the license key is stored inside the controller and contains the license key string itself.
BYTE# |
Field Name |
Data Type |
Value |
Remarks |
|---|---|---|---|---|
0 |
|
|
0 or 1 |
Indicates whether the license key is stored in the controller |
1 |
|
|
License key string data |
ASCII-encoded string of up to 48 bytes, used to verify the license authorization. |
Total size: 49 bytes
Defined in: DRFS.h
typedef struct _LICENSE_TEXT_PARAM
{
// position of license key
unsigned char _bLicenseInController;
// license key string data
unsigned char _szLicenseKey[48];
} LICENSE_TEXT_PARAM, *LPLICENSE_TEXT_PARAM;