home *** CD-ROM | disk | FTP | other *** search
/ BCI NET 2 / BCI NET 2.iso / archives / programming / arexx / ole1v10a.lha / OLE_System / server / New_Host.rexx < prev    next >
Encoding:
OS/2 REXX Batch file  |  1995-02-10  |  392 b   |  25 lines

  1. /*
  2.  * New_Host.rexx
  3.  *
  4.  * USAGE: New_Host.rexx
  5.  *
  6.  * Initialize correctly the Intuition Host for the OLE System.
  7.  *
  8.  * $(C): (1994, Rocco Coluccelli, Bologna)
  9.  * $VER: New_Host.rexx 1.00 (26.Oct.1994)
  10.  */
  11.  
  12.  
  13. PARSE ARG oleargv
  14. PARSE VALUE GETCLIP(oleargv) WITH server','ctrl','screen','
  15.  
  16.  
  17. /*
  18.  *    Create the host port for Intuition.
  19.  */
  20. ADDRESS AREXX
  21. CALL CreateHost(server,ctrl,screen)
  22.  
  23.  
  24. EXIT 0
  25.