home *** CD-ROM | disk | FTP | other *** search
- #define INCL_WINWORKPLACE
-
- #include <stdlib.h>
- #include <stdio.h>
- #include <string.h>
- #include <os2.h>
-
- main(int argc, char *argv[], char *envp[])
- {
- BOOL rc;
-
- rc = WinReplaceObjectClass("WPProgram", "WPPrgExt", FALSE);
- rc = WinDeregisterObjectClass("WPPrgExt");
-
- if (!rc) {
- printf("Unable to deregister the class\n\n");
- return 1;
- }
-
- printf("Deinstallation is completed");
- return 0;
- }