home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 15 / CD_ASCQ_15_070894.iso / vrac / memsz231.zip / PROCESS.H < prev    next >
Text File  |  1993-12-14  |  423b  |  19 lines

  1. // Class PROCESS: Encapsulates the startup/shutdown logic for a OS/2-PM process.
  2.  
  3. #define INCL_WIN
  4. #include <os2.h>
  5.  
  6. class Process
  7. {
  8.   private:
  9.     EXCEPTIONREGISTRATIONRECORD ExceptionRecord ;
  10.     HAB Anchor ;
  11.     HMQ Queue ;
  12.  
  13.   public:
  14.     Process ( LONG QueueSize = 0 ) ;
  15.     ~Process ( ) ;
  16.     inline HAB QueryAnchor () { return ( Anchor ) ; }
  17.     inline HMQ QueryQueue () { return ( Queue ) ; }
  18. } ;
  19.