| 195 | } |
| 196 | |
| 197 | void __fastcall Console::WriteWithVArgs(const char* pFormat, va_list args) |
| 198 | { |
| 199 | vsprintf_s(Debug::StringBuffer, pFormat, args); |
| 200 | Write(Debug::StringBuffer, strlen(Debug::StringBuffer)); |
| 201 | } |
| 202 | |
| 203 | void Console::WriteFormat(const char* pFormat, ...) |
| 204 | { |
nothing calls this directly
no outgoing calls
no test coverage detected