home *** CD-ROM | disk | FTP | other *** search
/ High Voltage Shareware / high1.zip / high1 / DIR24 / WPPRG15.ZIP / DINSTL.C next >
Text File  |  1993-11-27  |  351b  |  17 lines

  1. #include <os2.h>
  2. #define INCL_WINWORKPLACE
  3.  
  4. main(int argc, char *argv[], char *envp[])
  5. {
  6.    BOOL rc;
  7.  
  8.    rc = WinReplaceObjectClass("WPProgram", "WPPrgExt", FALSE);
  9.    rc = WinDeregisterObjectClass("WPPrgExt");
  10.  
  11.    if (!rc) 
  12.       printf("Unable to deregister the class\n\n");
  13.    else
  14.       printf("Deinstallation is completed");
  15.  
  16. }
  17.