home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / dovetail.zip / process.h < prev    next >
Text File  |  1992-02-18  |  524b  |  20 lines

  1.  
  2. #define INCL_WIN
  3. #include <os2.h>
  4.  
  5. // ******************************************************************
  6.  
  7. class Process
  8.    {
  9.     // ----------------------------------------------------------------------------------
  10.     private:
  11.             HAB      hAnchrBlk;
  12.             HMQ      hMsgQue;
  13.     // ------------------------------------------------------------------------------------
  14.     public:
  15.                      Process ();
  16.            HAB       AnchorBlock ();
  17.            HMQ       MsgQue ();
  18.    };
  19.  
  20.