Skylark: Fixed to compile with MINGW (thanks omari)

git-svn-id: svn://ultimatepp.org/upp/trunk@10756 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2017-01-25 14:46:45 +00:00
parent 776cd0ac92
commit 5d5d309261
2 changed files with 2 additions and 2 deletions

View file

@ -20,7 +20,7 @@ namespace Ini {
};
#ifdef PLATFORM_WIN32
BOOL WINAPI SkylarkApp::CtrlCHandlerRoutine(__in DWORD dwCtrlType)
BOOL WINAPI SkylarkApp::CtrlCHandlerRoutine(DWORD dwCtrlType)
{
LOG("Ctrl+C handler");
TheApp().quit = true;

View file

@ -74,7 +74,7 @@ class SkylarkApp : protected SkylarkConfig {
static SkylarkApp *app;
#ifdef PLATFORM_WIN32
static BOOL WINAPI CtrlCHandlerRoutine(__in DWORD dwCtrlType);
static BOOL WINAPI CtrlCHandlerRoutine(DWORD dwCtrlType);
#endif
typedef SkylarkApp CLASSNAME;