X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/3bce6687f47dfa5fb8d4bab92702a5b5b1eb3485..a647d42abcf7461dbd3abb88df3262e4bb495f73:/src/msw/main.cpp diff --git a/src/msw/main.cpp b/src/msw/main.cpp index 6803110d50..6ad79060fc 100644 --- a/src/msw/main.cpp +++ b/src/msw/main.cpp @@ -1,12 +1,12 @@ ///////////////////////////////////////////////////////////////////////////// // Name: msw/main.cpp -// Purpose: Main/DllMain +// Purpose: WinMain/DllMain // Author: Julian Smart // Modified by: // Created: 04/01/98 // RCS-ID: $Id$ -// Copyright: (c) Julian Smart and Markus Holzem -// Licence: wxWindows license +// Copyright: (c) Julian Smart +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// // ============================================================================ @@ -30,110 +30,163 @@ #include "wx/event.h" #include "wx/app.h" +#include "wx/cmdline.h" #include "wx/msw/private.h" -// from src/msw/app.cpp -extern void WXDLLEXPORT wxEntryCleanup(); +// 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 + #define DllMain DllEntryPoint +#endif + +#if defined(__WXMICROWIN__) + #define HINSTANCE HANDLE +#endif + +#if wxUSE_GUI // ---------------------------------------------------------------------------- -// globals +// function prototypes // ---------------------------------------------------------------------------- -HINSTANCE wxhInstance = 0; +// from src/msw/app.cpp +extern void WXDLLEXPORT wxEntryCleanup(); + +static wxChar **ConvertToStandardCommandArgs(const wxChar *p, int& argc); // ============================================================================ -// implementation +// implementation: various entry points // ============================================================================ // ---------------------------------------------------------------------------- -// 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) -// NT defines APIENTRY, 3.x not -#if !defined(APIENTRY) - #define APIENTRY FAR PASCAL -#endif +extern "C" +{ -///////////////////////////////////////////////////////////////////////////////// +// ---------------------------------------------------------------------------- // WinMain +// ---------------------------------------------------------------------------- + // 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) -#if defined(__WXWINE__) - #define HINSTANCE HINSTANCE__* - - extern "C" -#elif defined(__TWIN32__) || defined(__WXMICROWIN__) - #define HINSTANCE HANDLE - - extern "C" -#endif // WINE - 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 // !defined(_WINDLL) - -///////////////////////////////////////////////////////////////////////////////// -// DllMain - -#if defined(_WINDLL) +#else // _WINDLL // DLL entry point -extern "C" -#ifdef __BORLANDC__ -// SCD: I don't know why, but also OWL uses this function -BOOL WINAPI DllEntryPoint (HANDLE hModule, DWORD fdwReason, LPVOID lpReserved) -#else -BOOL WINAPI DllMain (HANDLE hModule, DWORD fdwReason, LPVOID lpReserved) -#endif +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 + // initialisation will be called when the application implicitly + // calls WinMain. #ifndef WXMAKINGDLL switch (fdwReason) { case DLL_PROCESS_ATTACH: - // Only call wxEntry if the application itself is part of the DLL. - // If only the wxWindows library is in the DLL, then the - // initialisation will be called when the application implicitly - // calls WinMain. - return wxEntry((WXHINSTANCE) hModule); + return wxEntry(hModule); case DLL_PROCESS_DETACH: - if ( wxTheApp ) - wxTheApp->OnExit(); - wxEntryCleanup(); - break; + wxEntryCleanup(); + break; } #else (void)hModule; (void)fdwReason; #endif // !WXMAKINGDLL - (void)lpReserved; + return TRUE; } -#endif // _WINDLL +#endif // _WINDLL/!_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]; + + 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 functions +// global HINSTANCE // ---------------------------------------------------------------------------- +#if wxUSE_BASE + +HINSTANCE wxhInstance = 0; + HINSTANCE wxGetInstance() { return wxhInstance; @@ -144,3 +197,5 @@ void wxSetInstance(HINSTANCE hInst) wxhInstance = hInst; } +#endif // wxUSE_BASE +