X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/77ffb5937e89927b621128789401db8921fe580f..d6f2a8911e509fd9e61f881cc881a97f5aa05ae8:/src/cocoa/main.cpp diff --git a/src/cocoa/main.cpp b/src/cocoa/main.cpp index 091e4080e7..b84c2a5a91 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: wxWidgets license +// Licence: wxWindows license ///////////////////////////////////////////////////////////////////////////// /* 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); } -