X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e2478fde622a16d25c66690af353dfdc37e7b582..88f23fdd8366d57d15cba42d152539ff9ccbdd39:/src/msw/main.cpp diff --git a/src/msw/main.cpp b/src/msw/main.cpp index f5a6a4b22a..5617b1f15c 100644 --- a/src/msw/main.cpp +++ b/src/msw/main.cpp @@ -30,6 +30,7 @@ #include "wx/event.h" #include "wx/app.h" +#include "wx/cmdline.h" #include "wx/msw/private.h" @@ -48,6 +49,8 @@ #define HINSTANCE HANDLE #endif +#if wxUSE_GUI + // ---------------------------------------------------------------------------- // function prototypes // ---------------------------------------------------------------------------- @@ -55,13 +58,35 @@ // from src/msw/app.cpp extern void WXDLLEXPORT wxEntryCleanup(); +static wxChar **ConvertToStandardCommandArgs(const wxChar *p, int& argc); + // ============================================================================ // implementation: various entry points // ============================================================================ +// ---------------------------------------------------------------------------- +// Windows-specific wxEntry +// ---------------------------------------------------------------------------- + +WXDLLEXPORT int wxEntry(HINSTANCE hInstance, + HINSTANCE WXUNUSED(hPrevInstance), + char *pCmdLine, + int nCmdShow) +{ + // remember the parameters Windows gave us + wxSetInstance(hInstance); + wxApp::m_nCmdShow = nCmdShow; + + // parse the command line + int argc; + wxChar **argv = ConvertToStandardCommandArgs(wxConvertMB2WX(pCmdLine), argc); + + 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" { @@ -75,16 +100,23 @@ extern "C" #if !defined(_WINDLL) +#ifdef __WXWINCE__ +int WINAPI WinMain(HINSTANCE hInstance, + HINSTANCE hPrevInstance, + LPWSTR lpCmdLine, + int nCmdShow) +{ + return wxEntry(hInstance, hPrevInstance, (char*) lpCmdLine, nCmdShow); +} +#else int PASCAL WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow) { - return wxEntry((WXHINSTANCE) hInstance, - (WXHINSTANCE) hPrevInstance, - lpCmdLine, - nCmdShow); + return wxEntry(hInstance, hPrevInstance, lpCmdLine, nCmdShow); } +#endif #else // _WINDLL @@ -101,13 +133,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; @@ -123,11 +153,47 @@ DllMain(HANDLE hModule, DWORD fdwReason, LPVOID WXUNUSED(lpReserved)) #endif // !NOMAIN +// --------------------------------------------------------------------------- +// Convert Windows to argc, argv style +// --------------------------------------------------------------------------- + +wxChar **ConvertToStandardCommandArgs(const wxChar *p, int& argc) +{ + // break the command line in words + wxArrayString args; + if ( p ) + { + args = wxCmdLineParser::ConvertStringToArgs(p); + } + + // +1 here for the program name + argc = args.GetCount() + 1; + + // and +1 here for the terminating NULL + wxChar **argv = new wxChar *[argc + 1]; + + argv[0] = new wxChar[MAX_PATH]; + ::GetModuleFileName(wxhInstance, argv[0], MAX_PATH); + + // copy all the other arguments to wxApp::argv[] + for ( int i = 1; i < argc; i++ ) + { + argv[i] = wxStrdup(args[i - 1]); + } + + // argv[] must be NULL-terminated + argv[argc] = NULL; + + return argv; +} + +#endif // wxUSE_GUI + // ---------------------------------------------------------------------------- // global HINSTANCE // ---------------------------------------------------------------------------- -#ifdef __WXBASE__ +#if wxUSE_BASE HINSTANCE wxhInstance = 0; @@ -141,5 +207,5 @@ void wxSetInstance(HINSTANCE hInst) wxhInstance = hInst; } -#endif // __WXBASE__ +#endif // wxUSE_BASE