| 636 | } |
| 637 | |
| 638 | BYTE __stdcall CSuperSerialCard::CommControl(WORD, WORD, BYTE write, BYTE value, ULONG) |
| 639 | { |
| 640 | if (!CheckComm()) |
| 641 | return 0; |
| 642 | |
| 643 | if (write && (value != m_uControlByte)) |
| 644 | { |
| 645 | UpdateControlReg(value); |
| 646 | UpdateCommState(); |
| 647 | } |
| 648 | |
| 649 | return m_uControlByte; |
| 650 | } |
| 651 | |
| 652 | //=========================================================================== |
| 653 |
no outgoing calls
no test coverage detected