]>
Commit | Line | Data |
---|---|---|
ffecfa5a | 1 | ///////////////////////////////////////////////////////////////////////////// |
e2731512 | 2 | // Name: src/palmos/main.cpp |
ffecfa5a | 3 | // Purpose: wxEnter for Palm OS |
e2731512 | 4 | // Author: William Osborne - minimal working wxPalmOS port |
ffecfa5a JS |
5 | // Modified by: |
6 | // Created: 10/07/04 | |
e2731512 | 7 | // RCS-ID: $Id$ |
ffecfa5a JS |
8 | // Copyright: (c) William Osborne |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | // ============================================================================ | |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
16 | // ---------------------------------------------------------------------------- | |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
19 | ||
ffecfa5a JS |
20 | // For compilers that support precompilation, includes "wx.h". |
21 | #include "wx/wxprec.h" | |
22 | ||
23 | #ifdef __BORLANDC__ | |
24 | #pragma hdrstop | |
25 | #endif | |
26 | ||
d5da0ce7 WS |
27 | #ifndef WX_PRECOMP |
28 | #include "wx/event.h" | |
670f9935 | 29 | #include "wx/app.h" |
d5da0ce7 WS |
30 | #endif //WX_PRECOMP |
31 | ||
ffecfa5a JS |
32 | #include "wx/cmdline.h" |
33 | ||
34 | #if wxUSE_GUI | |
35 | ||
36 | // ============================================================================ | |
37 | // implementation: various entry points | |
38 | // ============================================================================ | |
39 | ||
40 | // ---------------------------------------------------------------------------- | |
41 | // Platform-specific wxEntry | |
42 | // ---------------------------------------------------------------------------- | |
43 | ||
44 | int wxEntry() | |
45 | { | |
6afc1b46 | 46 | /* There is no command line in PalmOS. For now generate a fake argument |
ffecfa5a JS |
47 | * list. Later this may be changed to reflect the application launch code |
48 | */ | |
6afc1b46 | 49 | static const int argc = 0; |
ffecfa5a | 50 | wxChar **argv = new wxChar *[argc + 1]; |
ffecfa5a JS |
51 | |
52 | // argv[] must be NULL-terminated | |
53 | argv[argc] = NULL; | |
e2731512 | 54 | |
2d7388d3 | 55 | return wxEntry(wx_const_cast(int, argc), argv); |
ffecfa5a JS |
56 | } |
57 | ||
58 | #endif // wxUSE_GUI |