home *** CD-ROM | disk | FTP | other *** search
- /*
- * New_Host.rexx
- *
- * USAGE: New_Host.rexx
- *
- * Initialize correctly the Intuition Host for the OLE System.
- *
- * $(C): (1994, Rocco Coluccelli, Bologna)
- * $VER: New_Host.rexx 1.00 (26.Oct.1994)
- */
-
-
- PARSE ARG oleargv
- PARSE VALUE GETCLIP(oleargv) WITH server','ctrl','screen','
-
-
- /*
- * Create the host port for Intuition.
- */
- ADDRESS AREXX
- CALL CreateHost(server,ctrl,screen)
-
-
- EXIT 0
-