From 3c661019e3e7251383db35b2398c37866918d005 Mon Sep 17 00:00:00 2001 From: tinyserver Date: Mon, 16 Apr 2018 07:48:13 +0800 Subject: [PATCH] Add debug print for dbgview.exe( www.sysinternal.com ) or other debug view tools --- src/Mayaqua/Win32.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Mayaqua/Win32.c b/src/Mayaqua/Win32.c index b8970f0a..0ba438c6 100644 --- a/src/Mayaqua/Win32.c +++ b/src/Mayaqua/Win32.c @@ -3510,6 +3510,9 @@ void Win32PrintToFileW(wchar_t *str) { return; } + + /* When debugging in windows, you can use dbgview.exe( sysinternal.com ) or other same tools to trace debug print */ + OutputDebugStringW(str); utf = CopyUniToUtf(str);