home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 11 Util / 11-Util.zip / titleb.zip / FIX.CMD next >
OS/2 REXX Batch file  |  1995-07-22  |  507b  |  21 lines

  1. /* Install TITLE.DLL entry into USER INI file*/
  2. parse arg inifile
  3. Load_Sys()
  4. ini = 'USER'
  5. CR = d2c(10)
  6.  
  7. /*
  8.  
  9.    If you modify the line below don't forget to leave TITLE in!
  10.    We need this entry for TITLE.DLL to be referenced.
  11. */
  12. string = SysIni(ini,"SYS_DLLS","LoadPerProcess","PMCTLS SND TITLE")
  13. say "Your INI has been updated. Please copy TITLE.DLL to OS2\DLL and reboot"
  14. exit
  15.  
  16. Load_Sys: Procedure
  17. call RxFuncAdd 'SysLoadFuncs', 'RexxUtil', 'SysLoadFuncs'
  18. call SysLoadFuncs
  19. return ""
  20.  
  21.