X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c4e7c2aa5822f9a6e97d8d7848b95ea2eadcd98b..4b2424bcadbc87babd3367d243b957e49333eeae:/src/msw/main.cpp diff --git a/src/msw/main.cpp b/src/msw/main.cpp index 1cab1f628e..f9a4ae5e65 100644 --- a/src/msw/main.cpp +++ b/src/msw/main.cpp @@ -1,31 +1,62 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: main.cpp +// Name: msw/main.cpp // Purpose: Main/DllMain // Author: Julian Smart // Modified by: // Created: 04/01/98 // RCS-ID: $Id$ // Copyright: (c) Julian Smart and Markus Holzem -// Licence: wxWindows license +// Licence: wxWindows license ///////////////////////////////////////////////////////////////////////////// +// ============================================================================ +// declarations +// ============================================================================ + +// ---------------------------------------------------------------------------- +// headers +// ---------------------------------------------------------------------------- + +#ifdef __GNUG__ + #pragma implementation +#endif + // For compilers that support precompilation, includes "wx.h". #include "wx/wxprec.h" #ifdef __BORLANDC__ -#pragma hdrstop + #pragma hdrstop #endif +#include "wx/event.h" #include "wx/app.h" -#include + +#include "wx/msw/private.h" + +// from src/msw/app.cpp +extern void WXDLLEXPORT wxEntryCleanup(); + +// ---------------------------------------------------------------------------- +// globals +// ---------------------------------------------------------------------------- + +HINSTANCE wxhInstance = 0; + +// ============================================================================ +// implementation +// ============================================================================ + +// ---------------------------------------------------------------------------- +// various entry points +// ---------------------------------------------------------------------------- // May wish not to have a DllMain or WinMain, e.g. if we're programming -// a Netscape plugin. -#ifndef NOMAIN +// a Netscape plugin or if we're writing a console application +#if wxUSE_GUI && !defined(NOMAIN) // NT defines APIENTRY, 3.x not #if !defined(APIENTRY) -#define APIENTRY FAR PASCAL + #define APIENTRY FAR PASCAL #endif ///////////////////////////////////////////////////////////////////////////////// @@ -35,17 +66,22 @@ #if !defined(_WINDLL) -#ifdef __WATCOMC__ -int PASCAL -#else -int APIENTRY -#endif +#if defined(__TWIN32__) || defined(__WXWINE__) || defined(__WXMICROWIN__) + #define HINSTANCE HANDLE + + extern "C" +#endif // WINE - WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR m_lpCmdLine, int nCmdShow ) +int PASCAL WinMain(HINSTANCE hInstance, + HINSTANCE hPrevInstance, + LPSTR lpCmdLine, + int nCmdShow) { - return wxEntry((WXHINSTANCE) hInstance, (WXHINSTANCE) hPrevInstance, m_lpCmdLine, nCmdShow); + return wxEntry((WXHINSTANCE) hInstance, (WXHINSTANCE) hPrevInstance, + lpCmdLine, nCmdShow); } -#endif + +#endif // !defined(_WINDLL) ///////////////////////////////////////////////////////////////////////////////// // DllMain @@ -62,26 +98,45 @@ BOOL WINAPI DllEntryPoint (HANDLE hModule, DWORD fdwReason, LPVOID lpReserved) BOOL WINAPI DllMain (HANDLE hModule, DWORD fdwReason, LPVOID lpReserved) #endif { +#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. - -#if !defined(WXMAKINGDLL) - return wxEntry((WXHINSTANCE) hModule); -#endif - break; - - case DLL_PROCESS_DETACH: - default: - break; - } - return TRUE; + { + 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); + + case DLL_PROCESS_DETACH: + if ( wxTheApp ) + wxTheApp->OnExit(); + wxEntryCleanup(); + break; + } +#else + (void)hModule; + (void)fdwReason; +#endif // !WXMAKINGDLL + (void)lpReserved; + return TRUE; } -#endif +#endif // _WINDLL -#endif +#endif // !NOMAIN + +// ---------------------------------------------------------------------------- +// global functions +// ---------------------------------------------------------------------------- + +HINSTANCE wxGetInstance() +{ + return wxhInstance; +} + +void wxSetInstance(HINSTANCE hInst) +{ + wxhInstance = hInst; +}