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

event-private.h « io-layer « mono - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e0046554f111de4f4e5dc5ede7cb70fdf495c1aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*
 * event-private.h:  Private definitions for event handles
 *
 * Author:
 *	Dick Porter (dick@ximian.com)
 *
 * (C) 2002 Ximian, Inc.
 */

#ifndef _WAPI_EVENT_PRIVATE_H_
#define _WAPI_EVENT_PRIVATE_H_

#include <config.h>
#include <glib.h>
#include <pthread.h>

#include <mono/io-layer/mono-mutex.h>

extern struct _WapiHandleOps _wapi_event_ops;

struct _WapiHandle_event
{
	gboolean manual;
};

struct _WapiHandlePrivate_event
{
	int dummy;
};

#endif /* _WAPI_EVENT_PRIVATE_H_ */