]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: src/cocoa/main.cpp | |
3 | // Purpose: Entry point | |
4 | // Author: David Elliott | |
5 | // Modified by: | |
6 | // Created: 2002/11/11 | |
7 | // Copyright: (c) 2002 David Elliott | |
8 | // Licence: wxWindows licence | |
9 | ///////////////////////////////////////////////////////////////////////////// | |
10 | /* DFE: ^^^^^ Was that really necessary :-) */ | |
11 | ||
12 | #include "wx/wxprec.h" | |
13 | ||
14 | #ifndef WX_PRECOMP | |
15 | #include "wx/app.h" | |
16 | #endif // WX_PRECOMP | |
17 | ||
18 | WXDLLEXPORT int main(int argc, char* argv[]) | |
19 | { | |
20 | return wxEntry(argc, argv); | |
21 | } |