| 62 | } |
| 63 | |
| 64 | void Debug(DebugMessageType type, _In_z_ _Printf_format_string_ char const* fmt, ...) |
| 65 | { |
| 66 | if (gCoreLibPlatformInterface.GlobalConsole) { |
| 67 | va_list args; |
| 68 | va_start(args, fmt); |
| 69 | char buf[1024]; |
| 70 | _vsnprintf_s(buf, std::size(buf), _TRUNCATE, fmt, args); |
| 71 | va_end(args); |
| 72 | gCoreLibPlatformInterface.GlobalConsole->Print(type, buf); |
| 73 | } |
| 74 | } |
| 75 | |
| 76 | void DebugLocal(DebugMessageType type, _In_z_ _Printf_format_string_ char const* fmt, ...) |
| 77 | { |