]>
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"
27 // May wish not to have a DllMain or WinMain, e.g. if we're programming
31 // NT defines APIENTRY, 3.x not
32 #if !defined(APIENTRY)
33 #define APIENTRY FAR PASCAL
36 /////////////////////////////////////////////////////////////////////////////////
38 // Note that WinMain is also defined in dummy.obj, which is linked to
39 // an application that is using the DLL version of wxWindows.
49 WinMain(HINSTANCE hInstance
, HINSTANCE hPrevInstance
, LPSTR m_lpCmdLine
, int nCmdShow
)
51 return wxEntry((WXHINSTANCE
) hInstance
, (WXHINSTANCE
) hPrevInstance
, m_lpCmdLine
, nCmdShow
);
55 /////////////////////////////////////////////////////////////////////////////////
64 // SCD: I don't know why, but also OWL uses this function
65 BOOL WINAPI
DllEntryPoint (HANDLE hModule
, DWORD fdwReason
, LPVOID lpReserved
)
67 BOOL WINAPI
DllMain (HANDLE hModule
, DWORD fdwReason
, LPVOID lpReserved
)
72 case DLL_PROCESS_ATTACH
:
73 // Only call wxEntry if the application itself is part of the DLL.
74 // If only the wxWindows library is in the DLL, then the initialisation
75 // will be called when the application implicitly calls WinMain.
77 #if !defined(WXMAKINGDLL)
78 return wxEntry((WXHINSTANCE
) hModule
);
82 case DLL_PROCESS_DETACH
: