NativeOverlapped.cs 522 B

123456789101112131415161718192021222324252627
  1. //
  2. // System.Threading.NativeOverlapped.cs
  3. //
  4. // Author:
  5. // Dick Porter ([email protected])
  6. //
  7. // (C) Ximian, Inc. http://www.ximian.com
  8. //
  9. using System.Runtime.InteropServices;
  10. namespace System.Threading
  11. {
  12. public struct NativeOverlapped {
  13. public int EventHandle;
  14. public int InternalHigh;
  15. public int InternalLow;
  16. public int OffsetHigh;
  17. public int OffsetLow;
  18. // (fields disappeared beta2 -> 1.0)
  19. // public GCHandle ReservedClassLib;
  20. // public int ReservedCOR1;
  21. // public GCHandle ReservedCOR2;
  22. }
  23. }