Nefarius.Peripherals.Serial.../PInvokeSerialPort/Win32PInvoke/OVERLAPPED.cs
2012-03-03 13:20:54 +03:30

15 lines
359 B
C#
Executable File

using System;
using System.Runtime.InteropServices;
namespace PInvokeSerialPort.Win32PInvoke
{
[StructLayout(LayoutKind.Sequential)]
internal struct OVERLAPPED
{
internal UIntPtr Internal;
internal UIntPtr InternalHigh;
internal UInt32 Offset;
internal UInt32 OffsetHigh;
internal IntPtr hEvent;
}
}