| 123456789101112131415161718192021222324252627 |
- //
- // System.Threading.NativeOverlapped.cs
- //
- // Author:
- // Dick Porter ([email protected])
- //
- // (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;
- }
- }
|