More type migration

This commit is contained in:
2024-07-13 15:24:30 +02:00
parent a8068becba
commit 086633b8a2
3 changed files with 10 additions and 11 deletions
@@ -501,7 +501,7 @@ public partial class SerialPort : IDisposable
s = s.Append("Framing,");
}
if (((uint)errs & Win32Com.CE_IOE) != 0)
if (((uint)errs & PInvoke.CE_IOE) != 0)
{
s = s.Append("IO,");
}
@@ -521,7 +521,7 @@ public partial class SerialPort : IDisposable
s = s.Append("Parity,");
}
if (((uint)errs & Win32Com.CE_TXFULL) != 0)
if (((uint)errs & PInvoke.CE_TXFULL) != 0)
{
s = s.Append("Transmit Overflow,");
}