home *** CD-ROM | disk | FTP | other *** search
/ The Pier Shareware 6 / The_Pier_Shareware_Number_6_(The_Pier_Exchange)_(1995).iso / 038 / dho_9a.zip / PROCESS.H < prev    next >
Text File  |  1994-10-12  |  570b  |  28 lines

  1. // Developer Helper Object Set, (C) 1994 Thomas E. Bednarz, Jr.
  2. //  All rights reserved
  3.  
  4.  
  5. #ifndef __PROCESS_H__
  6. #define __PROCESS_H__
  7. #define INCL_WIN
  8. #include <os2.h>
  9. #include"object.h"
  10.  
  11. // ******************************************************************
  12.  
  13. class TProcess : public TObject
  14. {
  15.  
  16.             HAB      hAnchrBlk;
  17.             HMQ      hMsgQue;
  18.    public:
  19.            TProcess (void);
  20.            HAB getAnchorBlock (void);
  21.            HMQ getMsgQue (void);
  22.            virtual const char *getClassName(void);
  23.  
  24. };
  25.  
  26.  
  27. #endif //process.h
  28.