home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Shareware BBS: 10 Tools
/
10-Tools.zip
/
ool.zip
/
OOL
/
include
/
xsem.h
< prev
next >
Wrap
C/C++ Source or Header
|
1997-04-03
|
843b
|
23 lines
#ifndef __XSEMAPHORE_H__
#define __XSEMAPHORE_H__
/*===========================================================================*/
/* OOL ------------------- the Open Object Library ------------- OS/2 Beta 1 */
/*===========================================================================*/
/* class: XSemaphore */
/* derived from: XObject */
/* last update: 3/97 */
/* programmed by: Stefan von Brauk (sbrauk@gwdg.de) */
/*===========================================================================*/
#include "xobject.h"
class _export_ XSemaphore:public XObject
{
protected:
ULONG hev;
XSemaphore() { hev = 0; }
};
#endif