NativeOverlapped.cs 472 B

123456789101112131415161718192021222324
  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. public GCHandle ReservedClassLib;
  19. public int ReservedCOR1;
  20. public GCHandle ReservedCOR2;
  21. }
  22. }