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.
MESSAGE_INPUT
This is a structure for providing user input related information is composed of the following fields when a robot controller needs to receive and process user input when executing a DRL program.
BYTE# |
Field Name |
Data Type |
Value |
Remarks |
|---|---|---|---|---|
0 |
|
|
256-byte string message information |
|
256 |
|
|
0~3 |
Expected input type |
Total size: 257 bytes
Defined in: DRFS.h
typedef struct _MESSAGE_INPUT
{
char _szText[MAX_STRING_SIZE]; /* message string */
unsigned char _iType; /* int:0, float:1, string:2, bool:3 */
} MESSAGE_INPUT, *LPMESSAGE_INPUT;
typedef MESSAGE_INPUT MONITORING_INPUT;