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