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

NativeOverlapped.cs « System.Threading « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2f681fba4bab56aaaa4c7d73b7d82b10b323d3a1 (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
//
// System.Threading.NativeOverlapped.cs
//
// Author:
//   Dick Porter (dick@ximian.com)
//
// (C) Ximian, Inc.  http://www.ximian.com
//

using System.Runtime.InteropServices;

namespace System.Threading
{
	public struct NativeOverlapped {
		public int EventHandle;
		public int InternalHigh;
		public int InternalLow;
		public int OffsetHigh;
		public int OffsetLow;

		// (fields disappeared beta2 -> 1.0)

		// public GCHandle ReservedClassLib;
		// public int ReservedCOR1;
		// public GCHandle ReservedCOR2;
	}
}