2001-11-12 Dick Porter <dick@ximian.com>
[mono.git] / mono / io-layer / semaphores.h
1 #ifndef _WAPI_SEMAPHORES_H_
2 #define _WAPI_SEMAPHORES_H_
3
4 #include <glib.h>
5
6 extern WapiHandle *CreateSemaphore(WapiSecurityAttributes *security, gint32 initial, gint32 max, const guchar *name);
7 extern gboolean ReleaseSemaphore(WapiHandle *handle, gint32 count, gint32 *prevcount);
8
9 #endif /* _WAPI_SEMAPHORES_H_ */