home *** CD-ROM | disk | FTP | other *** search
- 1 =
- 2 <
- 3 <=
- 4 >
- 5 >=
- 6 +
- 7 -
- 8 *
- 9 /
- 10 (
- 11 )
- 12 ,
- 13 "
- 14 '
- 15 #
- 16 0
- 17 %
- 18 $
- 19 ()
- 20 ->
- 21 !
- 22 \n
- 23 &
- 24 <>
- 25 //
- 26 _
- 64 IF
- 65 THEN
- 66 ELSE
- 67 ENDIF
- 68 END
- 69 GOTO
- 70 AND
- 71 OR
- 72 XOR
- 73 TRUE
- 74 FALSE
- 75 RETURN
- 76 FOR
- 77 TO
- 78 STEP
- 79 NEXT
- 80 DOWNTO
- 81 INCLUDE
- 82 EXTERNAL
- 83 STRING
- 84 INTEGER
- 85 AS
- 86 IN
- 87 GOSUB
- 88 REPEAT
- 89 UNTIL
- 90 NOT
- 91 DUMPINTEGERS
- 92 DUMPSTRINGS
- 93 DUMPFUNCS
- 94 DUMPKEYWORDS
- 95 DUMPLABELS
- 96 DUMPCODE
- 97 ASYNC
- 256 Token name string table
- 257 TOK_EQUAL
- 258 TOK_LSTHAN
- 259 TOK_LEQTHAN
- 260 TOK_GTRTHAN
- 261 TOK_GEQTHAN
- 262 TOK_PLUS
- 263 TOK_MINUS
- 264 TOK_TIMES
- 265 TOK_DIVIDE
- 266 TOK_LPARANT
- 267 TOK_RPARANT
- 268 TOK_COMMA
- 269 TOK_STRING
- 270 TOK_CHAR
- 271 TOK_PREPROC
- 272 TOK_INTEGER
- 273 TOK_INTEGERVAR
- 274 TOK_STRINGVAR
- 275 TOK_FUNCTION
- 276 TOK_JUMPTO
- 277 TOK_LABEL
- 278 TOK_ENDOFLINE
- 279 TOK_SEPARATOR
- 280 TOK_NOTEQUAL
- 281 TOK_COMMENT
- 282 TOK_JOINLINE
- 320 TOK_IF
- 321 TOK_THEN
- 322 TOK_ELSE
- 323 TOK_ENDIF
- 324 TOK_END
- 325 TOK_GOTO
- 326 TOK_AND
- 327 TOK_OR
- 328 TOK_XOR
- 329 TOK_TRUE
- 330 TOK_FALSE
- 331 TOK_RETURN
- 332 TOK_FOR
- 333 TOK_TO
- 334 TOK_STEP
- 335 TOK_NEXT
- 336 TOK_DOWNTO
- 337 TOK_INCLUDE
- 338 TOK_EXTERN
- 339 TOK_STRINGPARAM
- 340 TOK_INTEGERPARAM
- 341 TOK_AS
- 342 TOK_IN
- 343 TOK_GOSUB
- 344 TOK_REPEAT
- 345 TOK_UNTIL
- 346 TOK_NOT
- 347 TOK_DUMPINTS
- 348 TOK_DUMPSTRS
- 349 TOK_DUMPFUNCS
- 350 TOK_DUMPKEYWORDS
- 351 TOK_DUMPLABELS
- 352 TOK_DUMPCODE
- 353 TOK_ASYNC
- 512 Execution of script completed successfully
- 513 Include files nested too deeply
- 514 String constant too long
- 515 Bad character constant
- 516 Integer too large
- 517 Expected include file
- 518 Can't open include file
- 519 Can't read include file
- 520 Memory allocation failure, out of memory
- 521 Unrecognised pre-processor directive
- 522 Expected function name
- 523 Expected '('
- 524 Expected ',' or ')'
- 525 Expected function parameter definition
- 526 Expected return type definition
- 527 Expected IN keyword
- 528 Expected function library name
- 529 Redefinition of label
- 530 Redefinition of external function
- 531 Expected valid label
- 532 Jump to undefined label
- 533 Gosub call to undefined label
- 534 User requested break
- 535 Bad start of statement
- 536 Expected '='
- 537 Unexpected end of statement
- 538 Divide by zero
- 539 Bad integer operator
- 540 Uninitialized integer variable
- 541 Not an integer function
- 542 Expected ')'
- 543 Expected integer expression
- 544 Expected end of statement
- 545 Uninitialized string variable
- 546 Not a string function
- 547 Expected string expression
- 548 Expected 'THEN' statement
- 549 Expected integer assignment
- 550 Expected 'TO' or 'DOWNTO' statement
- 551 Missing 'NEXT'
- 552 Unexpected 'NEXT', not in for loop
- 553 Call to undefined external function
- 554 Expected '('
- 555 Expected ','
- 556 Expected 'UNTIL' statement
- 557 Unexpected 'RETURN', not in subroutine
- 558 Unexpected 'UNTIL', not in repeat loop
- 559 Unexpected 'ELSE', not in if statement
- 560 Unexpected 'THEN', not in if statement
- 561 Unable to load external function library
- 562 Unable to locate function in external library
- 563 Unterminated string constant
- 564 Unexpected 'ENDIF', not in if statement
- 565 Bad string operator
- 1024 #external length(string) as integer in "mgscript"
- 1025 #external ascii(string) as integer in "mgscript"
- 1026 #external chr(integer) as string in "mgscript"
- 1027 #external value(string) as integer in "mgscript"
- 1028 #external left(string,integer) as string in "mgscript"
- 1029 #external right(string,integer) as string in "mgscript"
- 1030 #external mid(string,integer,integer) as string in "mgscript"
- 1031 #external str(integer) as string in "mgscript"
- 1032 #external hex(integer) as string in "mgscript"
- 1033 #external debug(string) in "mgscript"
- 1034 #external logevent(string) in "mgcommon"
- 1035 #external inet_ntoa(integer) as string in "mgscript"
- 1036 #external inet_addr(string) as integer in "mgscript"
- 1037 #external connect(string,integer) as async integer in "mgscript"
- 1038 #external write(string) as async integer in "mgscript"
- 1039 #external readln(string) as async string in "mgscript"
- 1040 #external readch() as async string in "mgscript"
- 1041 #external read(integer) as async string in "mgscript"
- 1042 #external pos(string,string) as integer in "mgscript"
- 1043 #external proxy() as async integer in "mgscript"
- 1044 #external gethostname() as string in "mgscript"
- 1045 #external gethostbyname(string) as async integer in "mgscript"
- 1046 #external gethostbyaddr(integer) as async integer in "mgscript"
- 1047 #external getnumhosts() as async integer in "mgscript"
- 1048 #external getnumaddrs() as async integer in "mgscript"
- 1049 #external gethost(integer) as async string in "mgscript"
- 1050 #external getaddr(integer) as async integer in "mgscript"
- 1051 #external ftell(integer) as integer in "mgscript"
- 1052 #external fread(integer,integer) as string in "mgscript"
- 1053 #external ferror(integer) as integer in "mgscript"
- 1054 #external feof(integer) as integer in "mgscript"
- 1055 #external fseek(integer,integer,integer) as integer in "mgscript"
- 1056 #external fwrite(integer,string) as integer in "mgscript"
- 1057 #external fopen(string,string,integer) as async integer in "mgscript"
- 1058 #external fclose(integer) as async integer in "mgscript"
- 1059 #external pwrite(string) as async integer in "mgscript"
- 1060 #external preadln(string) as async string in "mgscript"
- 1061 #external preadch() as async string in "mgscript"
- 1062 #external pread(integer) as async string in "mgscript"
- 1063 #external regqueryval(integer,string,string) as integer in "mgcommon"
- 1064 #external regquerystr(integer,string,string) as string in "mgcommon"
- 1065 #external regsetval(integer,string,string,integer) as integer in "mgcommon"
- 1066 #external regsetstr(integer,string,string,string) as integer in "mgcommon"
- 1067 #external lower(string) as string in "mgscript"
- 1068 #external upper(string) as string in "mgscript"
- 1069 #external instr(string) as integer in "mgscript"
- 1070 #external ltrim(string) as string in "mgscript"
- 1071 #external rtrim(string) as string in "mgscript"
-