home *** CD-ROM | disk | FTP | other *** search
- /* Rexx command file for StartDos (comment mandatory on first line!) */
- parse arg szCommandComArgs
- if 'STARTDOS' <> address() then do
- say 'Expected STARTDOS environment'
- return 2
- end
- rc = AddDosSetting( 'DPMI_MEMORY_LIMIT=8' )
- rc = AddDosSetting( 'DOS_HIGH=ON' )
- /* override the default and start the session in a PM window */
- rc = StartWindowed()
- return 0