X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e2478fde622a16d25c66690af353dfdc37e7b582..eed9e4791274d68ea1fb0c556bf3199ecf88a7d9:/src/msw/main.cpp diff --git a/src/msw/main.cpp b/src/msw/main.cpp index f5a6a4b22a..fd950861b2 100644 --- a/src/msw/main.cpp +++ b/src/msw/main.cpp @@ -17,7 +17,7 @@ // headers // ---------------------------------------------------------------------------- -#ifdef __GNUG__ +#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) #pragma implementation #endif @@ -30,6 +30,7 @@ #include "wx/event.h" #include "wx/app.h" +#include "wx/cmdline.h" #include "wx/msw/private.h" @@ -48,20 +49,55 @@ #define HINSTANCE HANDLE #endif -// ---------------------------------------------------------------------------- -// function prototypes -// ---------------------------------------------------------------------------- - -// from src/msw/app.cpp -extern void WXDLLEXPORT wxEntryCleanup(); +#if wxUSE_GUI // ============================================================================ // implementation: various entry points // ============================================================================ +// ---------------------------------------------------------------------------- +// Windows-specific wxEntry +// ---------------------------------------------------------------------------- + +WXDLLEXPORT int wxEntry(HINSTANCE hInstance, + HINSTANCE WXUNUSED(hPrevInstance), + char * WXUNUSED(pCmdLine), + int nCmdShow) +{ + // remember the parameters Windows gave us + wxSetInstance(hInstance); + wxApp::m_nCmdShow = nCmdShow; + + // parse the command line: we can't use pCmdLine in Unicode build so it is + // simpler to never use it at all (this also results in a more correct + // argv[0]) + + // break the command line in words + wxArrayString args; + const wxChar *cmdLine = ::GetCommandLine(); + if ( cmdLine ) + { + args = wxCmdLineParser::ConvertStringToArgs(cmdLine); + } + + int argc = args.GetCount(); + + // +1 here for the terminating NULL + wxChar **argv = new wxChar *[argc + 1]; + for ( int i = 0; i < argc; i++ ) + { + argv[i] = wxStrdup(args[i]); + } + + // argv[] must be NULL-terminated + argv[argc] = NULL; + + return wxEntry(argc, argv); +} + // May wish not to have a DllMain or WinMain, e.g. if we're programming // a Netscape plugin or if we're writing a console application -#if wxUSE_GUI && !defined(NOMAIN) +#if !defined(NOMAIN) extern "C" { @@ -73,20 +109,7 @@ extern "C" // Note that WinMain is also defined in dummy.obj, which is linked to // an application that is using the DLL version of wxWindows. -#if !defined(_WINDLL) - -int PASCAL WinMain(HINSTANCE hInstance, - HINSTANCE hPrevInstance, - LPSTR lpCmdLine, - int nCmdShow) -{ - return wxEntry((WXHINSTANCE) hInstance, - (WXHINSTANCE) hPrevInstance, - lpCmdLine, - nCmdShow); -} - -#else // _WINDLL +#if defined(_WINDLL) // DLL entry point @@ -101,13 +124,11 @@ DllMain(HANDLE hModule, DWORD fdwReason, LPVOID WXUNUSED(lpReserved)) switch (fdwReason) { case DLL_PROCESS_ATTACH: - return wxEntry((WXHINSTANCE) hModule); + return wxEntry(hModule); case DLL_PROCESS_DETACH: - if ( wxTheApp ) - wxTheApp->OnExit(); - wxEntryCleanup(); - break; + wxEntryCleanup(); + break; } #else (void)hModule; @@ -117,17 +138,19 @@ DllMain(HANDLE hModule, DWORD fdwReason, LPVOID WXUNUSED(lpReserved)) return TRUE; } -#endif // _WINDLL/!_WINDLL +#endif // _WINDLL } // extern "C" #endif // !NOMAIN +#endif // wxUSE_GUI + // ---------------------------------------------------------------------------- // global HINSTANCE // ---------------------------------------------------------------------------- -#ifdef __WXBASE__ +#if wxUSE_BASE HINSTANCE wxhInstance = 0; @@ -141,5 +164,5 @@ void wxSetInstance(HINSTANCE hInst) wxhInstance = hInst; } -#endif // __WXBASE__ +#endif // wxUSE_BASE