Revert "update rx to the latest rx-oss-v1.1 build."
[mono-project.git] / mono / io-layer / mutexes.h
blobef9e46d9e94351b846a42156da1637830c1c2785
1 /*
2 * mutexes.h: Mutex handles
4 * Author:
5 * Dick Porter (dick@ximian.com)
7 * (C) 2002 Ximian, Inc.
8 */
10 #ifndef _WAPI_MUTEXES_H_
11 #define _WAPI_MUTEXES_H_
13 #include <glib.h>
15 G_BEGIN_DECLS
17 extern gpointer CreateMutex (WapiSecurityAttributes *security, gboolean owned,
18 const gunichar2 *name);
19 extern gboolean ReleaseMutex (gpointer handle);
20 extern gpointer OpenMutex (guint32 access, gboolean inherit,
21 const gunichar2 *name);
23 G_END_DECLS
25 #endif /* _WAPI_MUTEXES_H_ */