home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #6 / amigamamagazinepolishissue1998.iso / coders / jËzyki_programowania / logo / powerlogo / utilities / arexx-support.doc < prev    next >
Text File  |  1992-11-10  |  2KB  |  56 lines

  1.  
  2.    ARexx-Support.doc
  3.  
  4. The 'ARexx-Support' file provides a message port demon that allows LOGO to
  5. act as a command host and function host for ARexx. LOGO gets a list from
  6. the message and 'run's it.
  7.  
  8. The 'ARexx-Support' file also provides the following procedures to
  9. communicate with ARexx, or other programs with an ARexx compatible
  10. message port:
  11.  
  12.  
  13. command                 text ( port-name host-name file-ext )
  14.          text =   Word or list containing instruction to be run
  15.                   by the command destination.
  16.          port-name = Name of destination port, default 'REXX'.
  17.          host-name = Name of port to get commands back from ARexx,
  18.                      default output of 'hostport'.
  19.          file-ext =  File name extension ARexx will use to find
  20.                      command, default 'LOGO'.
  21.    LOGO command to send an ARexx command.
  22.  
  23. command-string          text ( port-name host-name file-ext )
  24.    LOGO command to send an ARexx string command.
  25.  
  26. command-async           text ( port-name host-name file-ext )
  27.    LOGO command to send an ARexx command asynchronously.
  28.  
  29. command-string-async    text ( port-name host-name file-ext )
  30.    LOGO command to send an ARexx string command asynchronously.
  31.  
  32. command-op              text ( port-name host-name file-ext )
  33.    LOGO operation to send an ARexx command, and output a result.
  34.  
  35. command-string-op       text ( port-name host-name file-ext )
  36.    LOGO operation to send an ARexx string command, and output a result.
  37.  
  38. function                text args ( port-name host-name file-ext )
  39.          text =   Word or list containing instruction to be run
  40.                   by the command destination.
  41.          args =   List containing function inputs.
  42.          port-name = Name of destination port, default 'REXX'.
  43.          host-name = Name of port to get commands back from ARexx,
  44.                      default output of 'hostport'.
  45.          file-ext =  File name extension ARexx will use to find
  46.                      command, default 'LOGO'.
  47.    LOGO command to send an ARexx function.
  48.  
  49. function-async          text args ( port-name host-name file-ext )
  50.    LOGO command to send an ARexx function asynchronously.
  51.  
  52. function-op             text args ( port-name host-name file-ext )
  53.    LOGO operation to send an ARexx function, and output a result.
  54.  
  55.  
  56.