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.
PROGRAM_SYNTAX_CHECK
This structure represents a syntax validation request for a program source. It specifies the text length of the DRL (Doosan Robot Language) program to be checked.
BYTE# |
Field Name |
Data Type |
Value |
Remarks |
|---|---|---|---|---|
0 |
|
|
≥ 0 |
Length of the DRL source text (bytes) |
4 |
|
|
(optional) |
Pointer to the program source text (not serialized) |
Total size: 4 bytes
Defined in: DRFS.h
typedef struct _PROGRAM_SYNTAX_CHECK
{
/* source text length */
unsigned int _iTextLength;
/* optional pointer to text string (unused in struct serialization) */
// char* _lpszTextString;
} PROGRAM_SYNTAX_CHECK, *LPPROGRAM_SYNTAX_CHECK;