mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-07-11 22:03:01 -06:00
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:
parent
776cd0ac92
commit
5d5d309261
2 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue