Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than Structures, prefix the name with the module name and a period.
COMSTAT (Structures)
.
C# Definition:
[StructLayout(LayoutKind.Sequential)]
private struct COMSTAT
{
public const uint fCtsHold = 0x1;
public const uint fDsrHold = 0x2;
public const uint fRlsdHold = 0x4;
public const uint fXoffHold = 0x8;
public const uint fXoffSent = 0x10;
public const uint fEof = 0x20;
public const uint fTxim = 0x40;
public UInt32 Flags;
public UInt32 cbInQue;
public UInt32 cbOutQue;
}
VB Definition:
<StructLayout(LayoutKind.Sequential, Pack:=1)>
Public Structure COMSTAT
Public Const fCtsHold As UInteger = &H1
Public Const fDsrHold As UInteger = &H2
Public Const fRlsdHold As UInteger = &H4
Public Const fXoffHold As UInteger = &H8
Public Const fXoffSent As UInteger = &H10
Public Const fEof As UInteger = &H20
Public Const fTxim As UInteger = &H40
Public fBitFields As Int32
Public cbInQue As Int32
Public cbOutQue As Int32
End Structure
User-Defined Field Types:
None.
Notes:
None.
The ClearCommError API
4/11/2014 4:32:55 AM - gibwar@gibixonline.com-67.42.187.10
Please edit this page!
Do you have...
helpful tips?
corrections to the existing content?
alternate definitions?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing any supporting types needed.