X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f932daffcb1edacc0c8c0cbba18a1427360236ce..dec48aa578d886cf26559dc80141fac5f628ff08:/include/wx/palmos/app.h diff --git a/include/wx/palmos/app.h b/include/wx/palmos/app.h index 153d1e6968..60dbfb0aa1 100644 --- a/include/wx/palmos/app.h +++ b/include/wx/palmos/app.h @@ -1,10 +1,10 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: app.h +// Name: wx/palmos/app.h // Purpose: wxApp class -// Author: William Osborne +// Author: William Osborne - minimal working wxPalmOS port // Modified by: // Created: 10/17/04 -// RCS-ID: $Id: +// RCS-ID: $Id$ // Copyright: (c) William Osborne // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// @@ -93,16 +93,21 @@ extern int WXDLLEXPORT wxEntry(); #define IMPLEMENT_WXWIN_MAIN \ + \ + extern "C" { \ + \ uint32_t PilotMain(uint16_t cmd, MemPtr cmdPBP, uint16_t launchFlags) \ { \ switch (cmd) { \ - case sysAppLaunchCmdNormalLaunch: \ + case 0 /* sysAppLaunchCmdNormalLaunch */ : \ wxEntry(); \ break; \ default: \ break; \ } \ - return errNone; \ + return 0 /* errNone */ ; \ + } \ + \ } #endif // _WX_APP_H_