home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / wpsprgm.zip / INSTALL.C < prev    next >
C/C++ Source or Header  |  1993-06-14  |  378b  |  24 lines

  1. #define INCL_PM
  2.  
  3. #include <os2.h>
  4. #include <stdio.h>
  5.  
  6. int main(int argc, char **argv)
  7. {
  8.     HAB    hab;
  9.     HMQ hmq;
  10.     
  11.     hab = WinInitialize(0);
  12.     hmq = WinCreateMsgQueue(hab, 0);
  13.     
  14.     if(WinRegisterObjectClass("aFolder", "afolder") )
  15.         WinReplaceObjectClass("WPFolder", "aFolder", TRUE);
  16.         
  17.     WinDestroyMsgQueue(hmq);
  18.     WinTerminate(hab);
  19.     
  20.     return(0);
  21. }
  22.  
  23.  
  24.