From: Stefan Neis Date: Mon, 8 Mar 2004 13:01:21 +0000 (+0000) Subject: main() is now always in the program. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/f3d8619423fd63bb3d490c06163803d784189095 main() is now always in the program. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26138 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/os2/main.cpp b/src/os2/main.cpp index acf359cdad..3a5802b172 100644 --- a/src/os2/main.cpp +++ b/src/os2/main.cpp @@ -9,10 +9,5 @@ // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// -int wxEntry(int argc, char *argv[]); - -int main(int argc, char* argv[]) -{ - return wxEntry(argc, argv); -} +// We don't put main() in the library any more. SN.