===========================================================================
| 112 | |
| 113 | //=========================================================================== |
| 114 | char FormatChar4Font(const BYTE b, bool* pWasHi_, bool* pWasLo_) |
| 115 | { |
| 116 | // Most Windows Fonts don't have (printable) glyphs for control chars |
| 117 | BYTE b1 = FormatCharTxtHigh(b, pWasHi_); |
| 118 | BYTE b2 = FormatCharTxtCtrl(b1, pWasLo_); |
| 119 | return b2; |
| 120 | } |
| 121 | |
| 122 | |
| 123 |
no test coverage detected