17 lines
544 B
C#
17 lines
544 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace Nefarius.Peripherals.SerialPort.Win32PInvoke;
|
|
|
|
[Obsolete("use CsWin32 instead.")]
|
|
internal class Win32Com
|
|
{
|
|
[DllImport("kernel32.dll")]
|
|
internal static extern Boolean GetHandleInformation(IntPtr hObject, out UInt32 lpdwFlags);
|
|
|
|
[DllImport("kernel32.dll")]
|
|
internal static extern Boolean TransmitCommChar(IntPtr hFile, Byte cChar);
|
|
|
|
[DllImport("kernel32.dll")]
|
|
internal static extern Boolean GetCommModemStatus(IntPtr hFile, out UInt32 lpModemStat);
|
|
} |