| 89 | return Write(str, (DWORD)str.GetLength()) / sizeof(TCHAR); |
| 90 | } |
| 91 | INT_PTR Format(LPCTSTR fmt, ...) |
| 92 | { |
| 93 | va_list ap; |
| 94 | va_start(ap, fmt); |
| 95 | return FormatV(fmt, ap); |
| 96 | } |
| 97 | |
| 98 | bool AtEOF() |
| 99 | // Returns true if there is no more data in the read buffer |
nothing calls this directly
no outgoing calls
no test coverage detected