Welcome to mirror list, hosted at ThFree Co, Russian Federation.

mutexes.h « io-layer « mono - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3caa06e5d45c9d3dc7cc69005599e658841ce0d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 * mutexes.h: Mutex handles
 *
 * Author:
 *	Dick Porter (dick@ximian.com)
 *
 * (C) 2002 Ximian, Inc.
 */

#ifndef _WAPI_MUTEXES_H_
#define _WAPI_MUTEXES_H_

#include <glib.h>

extern gpointer CreateMutex(WapiSecurityAttributes *security, gboolean owned,
			    const guchar *name);
extern gboolean ReleaseMutex(gpointer handle);

#endif /* _WAPI_MUTEXES_H_ */