TwclSerialPurgeFlag Enumeration

The flags used in PurgeConmm method.

Namespace: wclSerialClients
type
 TwclSerialPurgeFlag = (
 purgeRxAbort,
 purgeRxClear,
 purgeTxAbort,
 purgeTxClear
 );

The TwclSerialPurgeFlag type exposes the following members.

Show:
 NameDescription
purgeRxAbort

Terminates all outstanding overlapped read operations and returns immediately, even if the read operations have not been completed.

purgeRxClear

Clears the input buffer (if the device driver has one).

purgeTxAbort

Terminates all outstanding overlapped write operations and returns immediately, even if the write operations have not been completed.

purgeTxClear

Clears the output buffer (if the device driver has one).

Top