X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f252f8c35dc04e75d9ee57d1eff4b98149be797a..cf2372509cef60accf833de95b1688e0c28b0567:/src/msw/main.cpp diff --git a/src/msw/main.cpp b/src/msw/main.cpp index f761ec971a..a8bee7283b 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 @@ -34,11 +34,6 @@ #include "wx/msw/private.h" -// Don't implement WinMain if we're building an MFC/wxWindows hybrid app. -#if wxUSE_MFC && !defined(NOMAIN) - #define NOMAIN 1 -#endif - #ifdef __BORLANDC__ // BC++ has to be special: its run-time expects the DLL entry point to be // named DllEntryPoint instead of the (more) standard DllMain @@ -51,15 +46,6 @@ #if wxUSE_GUI -// ---------------------------------------------------------------------------- -// function prototypes -// ---------------------------------------------------------------------------- - -// from src/msw/app.cpp -extern void WXDLLEXPORT wxEntryCleanup(); - -static wxChar **ConvertToStandardCommandArgs(const wxChar *p, int& argc); - // ============================================================================ // implementation: various entry points // ============================================================================ @@ -70,16 +56,42 @@ static wxChar **ConvertToStandardCommandArgs(const wxChar *p, int& argc); WXDLLEXPORT int wxEntry(HINSTANCE hInstance, HINSTANCE WXUNUSED(hPrevInstance), - char *pCmdLine, + wxCmdLineArgType WXUNUSED(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); + // 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); + } + +#ifdef __WXWINCE__ + // WinCE doesn't insert the program itself, so do it ourselves. + args.Insert(wxGetFullModuleName(), 0); +#endif + + 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); } @@ -96,29 +108,9 @@ 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) - -#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(hInstance, hPrevInstance, lpCmdLine, nCmdShow); -} -#endif +// an application that is using the DLL version of wxWidgets. -#else // _WINDLL +#if defined(_WINDLL) // DLL entry point @@ -126,7 +118,7 @@ BOOL WINAPI DllMain(HANDLE hModule, DWORD fdwReason, LPVOID WXUNUSED(lpReserved)) { // Only call wxEntry if the application itself is part of the DLL. - // If only the wxWindows library is in the DLL, then the + // If only the wxWidgets library is in the DLL, then the // initialisation will be called when the application implicitly // calls WinMain. #ifndef WXMAKINGDLL @@ -140,55 +132,19 @@ DllMain(HANDLE hModule, DWORD fdwReason, LPVOID WXUNUSED(lpReserved)) break; } #else - (void)hModule; - (void)fdwReason; + (void)hModule; + (void)fdwReason; #endif // !WXMAKINGDLL return TRUE; } -#endif // _WINDLL/!_WINDLL +#endif // _WINDLL } // extern "C" #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]; - - // as we use wxStrdup below we must allocate the first argument using - // malloc(), not new[], as well - argv[0] = (wxChar *)malloc(MAX_PATH * sizeof(wxChar)); - ::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 // ----------------------------------------------------------------------------