X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/fb896a322a2ed53d393ee738765ddd3f72cee004..9c71750d8097c4ef7a8918645b242bd122a4fab5:/src/cocoa/main.cpp?ds=sidebyside diff --git a/src/cocoa/main.cpp b/src/cocoa/main.cpp index 2acb4871c4..133d043566 100644 --- a/src/cocoa/main.cpp +++ b/src/cocoa/main.cpp @@ -1,19 +1,22 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: cocoa/main.cpp +// Name: src/cocoa/main.cpp // Purpose: Entry point // Author: David Elliott // Modified by: // Created: 2002/11/11 -// RCS-ID: $Id: +// RCS-ID: $Id$ // Copyright: (c) 2002 David Elliott -// Licence: wxWindows license +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// /* DFE: ^^^^^ Was that really necessary :-) */ -#include "wx/app.h" +#include "wx/wxprec.h" + +#ifndef WX_PRECOMP + #include "wx/app.h" +#endif // WX_PRECOMP WXDLLEXPORT int main(int argc, char* argv[]) { - return wxEntry(argc, argv); + return wxEntry(argc, argv); } -