Fixed the windows message debug output so it works without HAVE_LIBC

This commit is contained in:
Sam Lantinga 2013-10-14 08:56:50 -07:00
parent e7e86c6dcd
commit fea2699c25
1 changed files with 10 additions and 12 deletions

View File

@ -310,17 +310,15 @@ WIN_WindowProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
#ifdef WMMSG_DEBUG #ifdef WMMSG_DEBUG
{ {
FILE *log = fopen("wmmsg.txt", "a"); char message[1024];
fprintf(log, "Received windows message: %p ", hwnd);
if (msg > MAX_WMMSG) { if (msg > MAX_WMMSG) {
fprintf(log, "%d", msg); SDL_snprintf(message, sizeof(message), "Received windows message: %p UNKNOWN (%d) -- 0x%X, 0x%X\n", hwnd, msg, wParam, lParam);
} else { } else {
fprintf(log, "%s", wmtab[msg]); SDL_snprintf(message, sizeof(message), "Received windows message: %p %s -- 0x%X, 0x%X\n", hwnd, wmtab[msg], wParam, lParam);
} }
fprintf(log, " -- 0x%X, 0x%X\n", wParam, lParam); OutputDebugStringA(message);
fclose(log);
} }
#endif #endif /* WMMSG_DEBUG */
if (IME_HandleMessage(hwnd, msg, wParam, &lParam, data->videodata)) if (IME_HandleMessage(hwnd, msg, wParam, &lParam, data->videodata))
return 0; return 0;