]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: msw/main.cpp | |
3 | // Purpose: WinMain/DllMain | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 04/01/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | // ============================================================================ | |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
16 | // ---------------------------------------------------------------------------- | |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
19 | ||
20 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) | |
21 | #pragma implementation | |
22 | #endif | |
23 | ||
24 | // For compilers that support precompilation, includes "wx.h". | |
25 | #include "wx/wxprec.h" | |
26 | ||
27 | #ifdef __BORLANDC__ | |
28 | #pragma hdrstop | |
29 | #endif | |
30 | ||
31 | #include "wx/event.h" | |
32 | #include "wx/app.h" | |
33 | #include "wx/cmdline.h" | |
34 | ||
35 | #include "wx/msw/private.h" | |
36 | ||
37 | #ifdef __BORLANDC__ | |
38 | // BC++ has to be special: its run-time expects the DLL entry point to be | |
39 | // named DllEntryPoint instead of the (more) standard DllMain | |
40 | #define DllMain DllEntryPoint | |
41 | #endif | |
42 | ||
43 | #if defined(__WXMICROWIN__) | |
44 | #define HINSTANCE HANDLE | |
45 | #endif | |
46 | ||
47 | #if wxUSE_GUI | |
48 | ||
49 | // ============================================================================ | |
50 | // implementation: various entry points | |
51 | // ============================================================================ | |
52 | ||
53 | // ---------------------------------------------------------------------------- | |
54 | // Windows-specific wxEntry | |
55 | // ---------------------------------------------------------------------------- | |
56 | ||
57 | WXDLLEXPORT int wxEntry(HINSTANCE hInstance, | |
58 | HINSTANCE WXUNUSED(hPrevInstance), | |
59 | wxCmdLineArgType WXUNUSED(pCmdLine), | |
60 | int nCmdShow) | |
61 | { | |
62 | // remember the parameters Windows gave us | |
63 | wxSetInstance(hInstance); | |
64 | wxApp::m_nCmdShow = nCmdShow; | |
65 | ||
66 | // parse the command line: we can't use pCmdLine in Unicode build so it is | |
67 | // simpler to never use it at all (this also results in a more correct | |
68 | // argv[0]) | |
69 | ||
70 | // break the command line in words | |
71 | wxArrayString args; | |
72 | ||
73 | const wxChar *cmdLine = ::GetCommandLine(); | |
74 | if ( cmdLine ) | |
75 | { | |
76 | args = wxCmdLineParser::ConvertStringToArgs(cmdLine); | |
77 | } | |
78 | ||
79 | #ifdef __WXWINCE__ | |
80 | // WinCE doesn't insert the program itself, so do it ourselves. | |
81 | args.Insert(wxGetFullModuleName(), 0); | |
82 | #endif | |
83 | ||
84 | int argc = args.GetCount(); | |
85 | ||
86 | // +1 here for the terminating NULL | |
87 | wxChar **argv = new wxChar *[argc + 1]; | |
88 | for ( int i = 0; i < argc; i++ ) | |
89 | { | |
90 | argv[i] = wxStrdup(args[i]); | |
91 | } | |
92 | ||
93 | // argv[] must be NULL-terminated | |
94 | argv[argc] = NULL; | |
95 | ||
96 | return wxEntry(argc, argv); | |
97 | } | |
98 | ||
99 | // May wish not to have a DllMain or WinMain, e.g. if we're programming | |
100 | // a Netscape plugin or if we're writing a console application | |
101 | #if !defined(NOMAIN) | |
102 | ||
103 | extern "C" | |
104 | { | |
105 | ||
106 | // ---------------------------------------------------------------------------- | |
107 | // WinMain | |
108 | // ---------------------------------------------------------------------------- | |
109 | ||
110 | // Note that WinMain is also defined in dummy.obj, which is linked to | |
111 | // an application that is using the DLL version of wxWidgets. | |
112 | ||
113 | #if defined(_WINDLL) | |
114 | ||
115 | // DLL entry point | |
116 | ||
117 | BOOL WINAPI | |
118 | DllMain(HANDLE hModule, DWORD fdwReason, LPVOID WXUNUSED(lpReserved)) | |
119 | { | |
120 | // Only call wxEntry if the application itself is part of the DLL. | |
121 | // If only the wxWidgets library is in the DLL, then the | |
122 | // initialisation will be called when the application implicitly | |
123 | // calls WinMain. | |
124 | #ifndef WXMAKINGDLL | |
125 | switch (fdwReason) | |
126 | { | |
127 | case DLL_PROCESS_ATTACH: | |
128 | return wxEntry(hModule); | |
129 | ||
130 | case DLL_PROCESS_DETACH: | |
131 | wxEntryCleanup(); | |
132 | break; | |
133 | } | |
134 | #else | |
135 | (void)hModule; | |
136 | (void)fdwReason; | |
137 | #endif // !WXMAKINGDLL | |
138 | ||
139 | return TRUE; | |
140 | } | |
141 | ||
142 | #endif // _WINDLL | |
143 | ||
144 | } // extern "C" | |
145 | ||
146 | #endif // !NOMAIN | |
147 | ||
148 | #endif // wxUSE_GUI | |
149 | ||
150 | // ---------------------------------------------------------------------------- | |
151 | // global HINSTANCE | |
152 | // ---------------------------------------------------------------------------- | |
153 | ||
154 | #if wxUSE_BASE | |
155 | ||
156 | HINSTANCE wxhInstance = 0; | |
157 | ||
158 | HINSTANCE wxGetInstance() | |
159 | { | |
160 | return wxhInstance; | |
161 | } | |
162 | ||
163 | void wxSetInstance(HINSTANCE hInst) | |
164 | { | |
165 | wxhInstance = hInst; | |
166 | } | |
167 | ||
168 | #endif // wxUSE_BASE | |
169 |