| 74 | } |
| 75 | |
| 76 | void DebugLocal(DebugMessageType type, _In_z_ _Printf_format_string_ char const* fmt, ...) |
| 77 | { |
| 78 | if (gCoreLibPlatformInterface.GlobalConsole) { |
| 79 | va_list args; |
| 80 | va_start(args, fmt); |
| 81 | char buf[1024]; |
| 82 | _vsnprintf_s(buf, std::size(buf), _TRUNCATE, fmt, args); |
| 83 | va_end(args); |
| 84 | gCoreLibPlatformInterface.GlobalConsole->LocalPrint(type, buf); |
| 85 | } |
| 86 | } |
| 87 | |
| 88 | void TryDebugBreak() |
| 89 | { |
nothing calls this directly
no test coverage detected