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.
DCB (Structures)
.
Summary:
The DCB structure defines the control setting for a serial communications device.
//I've missed some members...
private uint wReserved; // not currently used
internal uint XonLim; // transmit XON threshold
internal uint XoffLim; // transmit XOFF threshold
//...and some more
internal char XonChar; // Tx and Rx XON character
internal char XoffChar; // Tx and Rx XOFF character
internal char ErrorChar; // error replacement character
internal char EofChar; // end of input character
internal char EvtChar; // received event character
private uint wReserved1; // reserved; do not use
private static readonly int fBinary;
private static readonly int fParity;
private static readonly int fOutxCtsFlow;
private static readonly int fOutxDsrFlow;
private static readonly BitVector32.Section fDtrControl;
private static readonly int fDsrSensitivity;
private static readonly int fTXContinueOnXoff;
private static readonly int fOutX;
private static readonly int fInX;
private static readonly int fErrorChar;
private static readonly int fNull;
private static readonly BitVector32.Section fRtsControl;
private static readonly int fAbortOnError;
Public Structure DCB
Public DCBlength As Int32
Public BaudRate As Int32
Public fBitFields As Int32
Public wReserved As Int16
Public XonLim As Int16
Public XoffLim As Int16
Public ByteSize As Byte
Public Parity As Byte
Public StopBits As Byte
Public XonChar As Byte
Public XoffChar As Byte
Public ErrorChar As Byte
Public EofChar As Byte
Public EvtChar As Byte
Public wReserved1 As Int16 'Reserved; Do Not Use
End Structure
User-Defined Field Types:
None.
Notes:
Special thanks to Jay's Outlook MVP from Visual C# Community for the guidance.