home *** CD-ROM | disk | FTP | other *** search
/ The Developer Connection…ice Driver Kit for OS/2 3 / DEV3-D1.ISO / source / wpshidl / samples / wpsamps / install.cmd < prev    next >
Encoding:
Text File  |  1993-11-17  |  898 b   |  33 lines

  1. /* */
  2. call RxFuncAdd 'SysLoadFuncs', 'RexxUtil', 'SysLoadFuncs'
  3. call SysLoadFuncs
  4.  
  5. parse arg libdir
  6.  
  7. /* change following drive letter to your boot drive */
  8. if (libdir = "") then libdir = "C:\os2\dll"
  9.  
  10. 'copy dragexam.dll' libdir
  11. 'copy dragexam.sym' libdir
  12. 'copy dragfold.dll' libdir
  13. 'copy dragfold.sym' libdir
  14. 'copy myfolder.dll' libdir
  15. 'copy myfolder.sym' libdir
  16.  
  17. if SysCreateObject("DRAGEXAM","Drag Example","<WP_DESKTOP>") then
  18.    say 'Drag Example successfully installed.'
  19. else
  20.    say 'Error, Drag Example not installed properly.'
  21.  
  22. if SysCreateObject("DRAGFOLD","Drag Folder","<WP_DESKTOP>") then
  23.    say 'Drag Folder successfully installed.'
  24. else
  25.    say 'Error, Drag Folder not installed properly.'
  26.  
  27. if SysCreateObject("MYFOLDER","My Folder","<WP_DESKTOP>") then
  28.    say 'My Folder successfully installed.'
  29. else
  30.    say 'Error, My Folder not installed properly.'
  31.  
  32.  
  33.