]>
git.saurik.com Git - wxWidgets.git/blob - src/msw/main.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Main/DllMain
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
12 // For compilers that support precompilation, includes "wx.h".
13 #include "wx/wxprec.h"
22 // May wish not to have a DllMain or WinMain, e.g. if we're programming
26 // NT defines APIENTRY, 3.x not
27 #if !defined(APIENTRY)
28 #define APIENTRY FAR PASCAL
31 /////////////////////////////////////////////////////////////////////////////////
33 // Note that WinMain is also defined in dummy.obj, which is linked to
34 // an application that is using the DLL version of wxWindows.
44 WinMain(HINSTANCE hInstance
, HINSTANCE hPrevInstance
, LPSTR m_lpCmdLine
, int nCmdShow
)
46 return wxEntry((WXHINSTANCE
) hInstance
, (WXHINSTANCE
) hPrevInstance
, m_lpCmdLine
, nCmdShow
);
50 /////////////////////////////////////////////////////////////////////////////////
59 // SCD: I don't know why, but also OWL uses this function
60 BOOL WINAPI
DllEntryPoint (HANDLE hModule
, DWORD fdwReason
, LPVOID lpReserved
)
62 BOOL WINAPI
DllMain (HANDLE hModule
, DWORD fdwReason
, LPVOID lpReserved
)
67 case DLL_PROCESS_ATTACH
:
68 // Only call wxEntry if the application itself is part of the DLL.
69 // If only the wxWindows library is in the DLL, then the initialisation
70 // will be called when the application implicitly calls WinMain.
72 #if !defined(WXMAKINGDLL)
73 return wxEntry((WXHINSTANCE
) hModule
);
77 case DLL_PROCESS_DETACH
: