home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Beijing Paradise BBS Backup
/
PARADISE.ISO
/
software
/
BBSDOORW
/
NETCLB35.ZIP
/
NETCLB35.EXE
/
INCLUDE
/
NWSYNC.H
< prev
next >
Wrap
C/C++ Source or Header
|
1996-01-03
|
684b
|
25 lines
#ifndef NWSYNC_H
#define NWSYNC_H
/***************************************/
/* Synchronisation Services prototypes */
/***************************************/
#ifdef __cplusplus
extern "C" {
#endif
int CloseSemaphore(long semaphoreHandle);
int ExamineSemaphore(long semaphoreHandle,
int *semaphoreValue,
word *openCount);
int OpenSemaphore(char *semaphoreName,
int initialValue,long *semaphoreHandle,
word *openCount);
int SignalSemaphore(long semaphoreHandle);
int WaitOnSemaphore(long semaphoreHandle,int timeoutLimit);
#ifdef __cplusplus
}
#endif
#endif