Changes between Version 2 and Version 3 of SGISyntax


Ignore:
Timestamp:
2017-06-30 08:51:46 (8 years ago)
Author:
archibald
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SGISyntax

    v2 v3  
    505505#!c 
    506506uartFunctions :=  
    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 ")" }; 
    511511 
    512512pipeFunctions := 
    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 ")" }; 
    518518 
    519519winFunctions := 
    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 }}} 
     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}}}