Tue Sep 10 12:12:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
[mono.git] / mcs / class / corlib / System.Threading / NativeOverlapped.cs
1 //
2 // System.Threading.NativeOverlapped.cs
3 //
4 // Author:
5 //   Dick Porter (dick@ximian.com)
6 //
7 // (C) Ximian, Inc.  http://www.ximian.com
8 //
9
10 using System.Runtime.InteropServices;
11
12 namespace System.Threading
13 {
14         public struct NativeOverlapped {
15                 public int EventHandle;
16                 public int InternalHigh;
17                 public int InternalLow;
18                 public int OffsetHigh;
19                 public int OffsetLow;
20
21                 // (fields disappeared beta2 -> 1.0)
22
23                 // public GCHandle ReservedClassLib;
24                 // public int ReservedCOR1;
25                 // public GCHandle ReservedCOR2;
26         }
27 }