From f100921c57e265d7b32ca31e92f14a6301a88c09 Mon Sep 17 00:00:00 2001 From: Quantum Date: Sun, 8 Sep 2013 12:03:07 -0400 Subject: [PATCH] Using WinMain now, can you GCC stop complaining? --- src/Keyboard.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Keyboard.cpp b/src/Keyboard.cpp index 6caf683..facdebe 100644 --- a/src/Keyboard.cpp +++ b/src/Keyboard.cpp @@ -3,7 +3,7 @@ #pragma comment(lib, "comctl32.lib") -int WINAPI wWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPWSTR lpCmdLine, int nCmdShow) { +int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow) { UNREFERENCED_PARAMETER(hInstance); UNREFERENCED_PARAMETER(hPrevInstance); UNREFERENCED_PARAMETER(lpCmdLine);