Kennzeichnung | Meaning | Example |
UPPERCASE | Uppercase letters denote keywords or constants which must be specified exactly as shown. Keywords begin with *. | ACTION=*INITIALIZE |
lowercase letters | Lowercase letters denote the types of values or variables for which current values must be specified by the user, i.e. their value may be different from case to case. | AUTKEY=<var: int:4> |
= | The equals sign links an operand to the associated operand value. | SLOTID =<var: int:4> |
/ | The slash separates simple alternative operand values. | ACTION=*OPENSESSION / *CLOSESESSION |
< > | Angle brackets enclose the data type of the operand. | <var: int:4> |
underscored values | The underscore indicates the default value, i.e. the value assumed by the system, if no value is specified by the user. | TEMPL = <var: pointer> / NULL no specification implies TEMPL=NULL |
Data types of the operand values
Data type | Character set | Special features |
integer | 0..9,+,- | “+” or “-” may be specified only as the first character. The suffix Example
|
var: | Starts a variable specification. The colon is followed by the data Example
|
Data types of variables and register contents
integer (n) | An integer which occupies n bytes, where n <= 4. If the length specification is omitted, n=1 is assumed. |
enum NAME(n) | A list which occupies n bytes, where n <= 4. If the length specification is omitted, n=1 is assumed. |
pointer | Pointer (the address is passed). |