]>
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 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
26 // May wish not to have a DllMain or WinMain, e.g. if we're programming
30 // NT defines APIENTRY, 3.x not
31 #if !defined(APIENTRY)
32 #define APIENTRY FAR PASCAL
35 /////////////////////////////////////////////////////////////////////////////////
37 // Note that WinMain is also defined in dummy.obj, which is linked to
38 // an application that is using the DLL version of wxWindows.
48 WinMain(HINSTANCE hInstance
, HINSTANCE hPrevInstance
, LPSTR m_lpCmdLine
, int nCmdShow
)
50 return wxEntry((WXHINSTANCE
) hInstance
, (WXHINSTANCE
) hPrevInstance
, m_lpCmdLine
, nCmdShow
);
54 /////////////////////////////////////////////////////////////////////////////////
63 // SCD: I don't know why, but also OWL uses this function
64 BOOL WINAPI
DllEntryPoint (HANDLE hModule
, DWORD fdwReason
, LPVOID lpReserved
)
66 BOOL WINAPI
DllMain (HANDLE hModule
, DWORD fdwReason
, LPVOID lpReserved
)
71 case DLL_PROCESS_ATTACH
:
72 // Only call wxEntry if the application itself is part of the DLL.
73 // If only the wxWindows library is in the DLL, then the initialisation
74 // will be called when the application implicitly calls WinMain.
76 #if !defined(WXMAKINGDLL)
77 return wxEntry((WXHINSTANCE
) hModule
);
81 case DLL_PROCESS_DETACH
: