2002-04-30 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 gpointer CreateSemaphore(WapiSecurityAttributes *security,
7                                 gint32 initial, gint32 max,
8                                 const guchar *name);
9 extern gboolean ReleaseSemaphore(gpointer handle, gint32 count,
10                                  gint32 *prevcount);
11
12 #endif /* _WAPI_SEMAPHORES_H_ */