home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 1995 March / SOFM_Mar1995.bin / pc / utility / os2 / clock / helpwin.h < prev    next >
C/C++ Source or Header  |  1995-01-27  |  352b  |  15 lines

  1. // Class HELPWIN: Encapsulates the startup/shutdown logic for an OS/2-PM help window.
  2.  
  3. #define INCL_WIN
  4. #include <os2.h>
  5.  
  6. class HelpWindow
  7. {
  8.   private:
  9.     HWND Handle ;
  10.  
  11.   public:
  12.     HelpWindow ( HAB Anchor, HMODULE Module, USHORT Id, PSZ Filename, PSZ Title ) ;
  13.     ~HelpWindow ( ) ;
  14.     HWND QueryHandle () { return ( Handle ) ; }
  15. } ;