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

  1. // Class MODULE: Encapsulates the load/unload logic for a OS/2 resource module.
  2.  
  3. #define INCL_BASE
  4. #include <os2.h>
  5.  
  6. class Module
  7. {
  8.   private:
  9.     HMODULE Handle ;
  10.  
  11.   public:
  12.     Module ( PSZ Name = PSZ("") ) ;
  13.     ~Module ( ) ;
  14.     HMODULE QueryHandle () { return ( Handle ) ; }
  15. } ;
  16.