home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Shareware BBS: 10 Tools
/
10-Tools.zip
/
dho.zip
/
DHO
/
SRC
/
SOURCE.ZIP
/
process.h
< prev
next >
Wrap
C/C++ Source or Header
|
1995-08-27
|
651b
|
34 lines
/****************************************/
/* Developer Helper Object Set */
/* (C) 1994-95 Thomas E. Bednarz, Jr. */
/* All rights reserved */
/***************************************/
/* $Id: process.h 1.4 1995/08/13 03:21:12 teb Exp $ */
#ifndef __PROCESS_H__
#define __PROCESS_H__
#define INCL_WIN
#include <os2.h>
#include<object.h>
class TProcess : public TObject
{
HAB hAnchrBlk;
HMQ hMsgQue;
public:
TProcess (void);
HAB getAnchorBlock (void);
HMQ getMsgQue (void);
virtual const char *getClassName(void);
};
#endif /* process.h */