Reputation: 43331
Windows HyperTerminal COM port settings dialog contains Flow Control combo with the following values: Xon/Xoff, Hardware, None.
How these values are related to DCB structure? I don't see any member in this structure that I can fill with these values.
Upvotes: 1
Views: 1930
Reputation: 8065
Xon/Xoff: fTXContinueOnXoff, fOutX, fInX, XonLim, XoffLim, XonChar, XoffChar
Hardware: fOutxCtsFlow, fOutxDsrFlow, fDtrControl, fDsrSensitivity, fRtsControl
Upvotes: 2