Changes between Version 2 and Version 3 of SGISyntax
- Timestamp:
- 2017-06-30 08:51:46 (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SGISyntax
v2 v3 505 505 #!c 506 506 uartFunctions := 507 { openSerialPort(expression)508 | sendChar(expression, expression)509 | recvChar(expression)510 | closeSerialPort(expression)};507 { "openSerialPort (" expression ")" 508 | "sendChar (" expression "," expression ")" 509 | "recvChar (" expression ")" 510 | "closeSerialPort (" expression ")" }; 511 511 512 512 pipeFunctions := 513 { psopen(expression)514 | pcopen(expression)515 | pputc(expression,expression)516 | pgetc(expression)517 | pclose(expression)};513 { "psopen (" expression ")" 514 | "pcopen (" expression ")" 515 | "pputc (" expression "," expression ")" 516 | "pgetc (" expression ")" 517 | "pclose (" expression ")" }; 518 518 519 519 winFunctions := 520 { msgBox(expression,expression,expression)521 | MessageBox(expression,expression,expression,expression)522 | MSG_OK523 | MSG_OKCANCEL524 | MSG_ABORTRETRYIGNORE525 | MSG_MSG_YESNOCANCEL526 | MSG_YESNO527 | MSG_RETRYCANCEL528 | MSG_CANCELRETRYCONTINUE529 | MSG_WARNING530 | MSG_INFO531 | MSG_ERROR532 | MSG_QUESTION}533 }}} 520 { "msgBox (" expression "," expression "," expression ")" 521 | "MessageBox (" expression "," expression "," expression "," expression ")" 522 | "MSG_OK" 523 | "MSG_OKCANCEL" 524 | "MSG_ABORTRETRYIGNORE" 525 | "MSG_MSG_YESNOCANCEL" 526 | "MSG_YESNO" 527 | "MSG_RETRYCANCEL" 528 | "MSG_CANCELRETRYCONTINUE" 529 | "MSG_WARNING" 530 | "MSG_INFO" 531 | "MSG_ERROR" 532 | "MSG_QUESTION" } 533 }}}