NativeOverlapped.cs 530 B

123456789101112131415161718
  1. // Licensed to the .NET Foundation under one or more agreements.
  2. // The .NET Foundation licenses this file to you under the MIT license.
  3. // See the LICENSE file in the project root for more information.
  4. using System.Runtime.InteropServices;
  5. namespace System.Threading
  6. {
  7. [StructLayout(LayoutKind.Sequential)]
  8. public struct NativeOverlapped
  9. {
  10. public IntPtr InternalLow;
  11. public IntPtr InternalHigh;
  12. public int OffsetLow;
  13. public int OffsetHigh;
  14. public IntPtr EventHandle;
  15. }
  16. }