]> git.saurik.com Git - wxWidgets.git/blame - src/msw/main.cpp
updated Japanese translations (patch 769962)
[wxWidgets.git] / src / msw / main.cpp
CommitLineData
2bda0e17 1/////////////////////////////////////////////////////////////////////////////
b568d04f 2// Name: msw/main.cpp
e2478fde 3// Purpose: WinMain/DllMain
2bda0e17
KB
4// Author: Julian Smart
5// Modified by:
6// Created: 04/01/98
7// RCS-ID: $Id$
6c9a19aa
JS
8// Copyright: (c) Julian Smart
9// Licence: wxWindows licence
2bda0e17
KB
10/////////////////////////////////////////////////////////////////////////////
11
b568d04f
VZ
12// ============================================================================
13// declarations
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
19
a3b46648 20#ifdef __GNUG__
b568d04f 21 #pragma implementation
a3b46648
UU
22#endif
23
2bda0e17
KB
24// For compilers that support precompilation, includes "wx.h".
25#include "wx/wxprec.h"
26
27#ifdef __BORLANDC__
b568d04f 28 #pragma hdrstop
2bda0e17
KB
29#endif
30
2432b92d 31#include "wx/event.h"
2bda0e17 32#include "wx/app.h"
94826170 33#include "wx/cmdline.h"
b568d04f
VZ
34
35#include "wx/msw/private.h"
36
e2478fde 37// Don't implement WinMain if we're building an MFC/wxWindows hybrid app.
4cd513ab 38#if wxUSE_MFC && !defined(NOMAIN)
e2478fde 39 #define NOMAIN 1
4cd513ab
JS
40#endif
41
e2478fde
VZ
42#ifdef __BORLANDC__
43 // BC++ has to be special: its run-time expects the DLL entry point to be
44 // named DllEntryPoint instead of the (more) standard DllMain
45 #define DllMain DllEntryPoint
46#endif
47
48#if defined(__WXMICROWIN__)
49 #define HINSTANCE HANDLE
50#endif
beed393c 51
94826170
VZ
52#if wxUSE_GUI
53
b568d04f 54// ----------------------------------------------------------------------------
e2478fde 55// function prototypes
b568d04f
VZ
56// ----------------------------------------------------------------------------
57
e2478fde
VZ
58// from src/msw/app.cpp
59extern void WXDLLEXPORT wxEntryCleanup();
b568d04f 60
94826170
VZ
61static wxChar **ConvertToStandardCommandArgs(const wxChar *p, int& argc);
62
b568d04f 63// ============================================================================
e2478fde 64// implementation: various entry points
b568d04f
VZ
65// ============================================================================
66
94826170
VZ
67// ----------------------------------------------------------------------------
68// Windows-specific wxEntry
69// ----------------------------------------------------------------------------
70
b5fe6924
VS
71WXDLLEXPORT int wxEntry(HINSTANCE hInstance,
72 HINSTANCE WXUNUSED(hPrevInstance),
73 char *pCmdLine,
74 int nCmdShow)
94826170
VZ
75{
76 // remember the parameters Windows gave us
13bdd545 77 wxSetInstance(hInstance);
94826170
VZ
78 wxApp::m_nCmdShow = nCmdShow;
79
80 // parse the command line
81 int argc;
82 wxChar **argv = ConvertToStandardCommandArgs(wxConvertMB2WX(pCmdLine), argc);
83
84 return wxEntry(argc, argv);
85}
86
2bda0e17 87// May wish not to have a DllMain or WinMain, e.g. if we're programming
b568d04f 88// a Netscape plugin or if we're writing a console application
94826170 89#if !defined(NOMAIN)
2bda0e17 90
e2478fde
VZ
91extern "C"
92{
2bda0e17 93
e2478fde 94// ----------------------------------------------------------------------------
2bda0e17 95// WinMain
e2478fde
VZ
96// ----------------------------------------------------------------------------
97
2bda0e17
KB
98// Note that WinMain is also defined in dummy.obj, which is linked to
99// an application that is using the DLL version of wxWindows.
100
101#if !defined(_WINDLL)
102
4676948b
JS
103#ifdef __WXWINCE__
104int WINAPI WinMain(HINSTANCE hInstance,
105 HINSTANCE hPrevInstance,
106 LPWSTR lpCmdLine,
107 int nCmdShow)
108{
109 return wxEntry(hInstance, hPrevInstance, (char*) lpCmdLine, nCmdShow);
110}
111#else
8f177c8e
VZ
112int PASCAL WinMain(HINSTANCE hInstance,
113 HINSTANCE hPrevInstance,
114 LPSTR lpCmdLine,
115 int nCmdShow)
2bda0e17 116{
13bdd545 117 return wxEntry(hInstance, hPrevInstance, lpCmdLine, nCmdShow);
2bda0e17 118}
4676948b 119#endif
8f177c8e 120
e2478fde 121#else // _WINDLL
2bda0e17
KB
122
123// DLL entry point
124
e2478fde
VZ
125BOOL WINAPI
126DllMain(HANDLE hModule, DWORD fdwReason, LPVOID WXUNUSED(lpReserved))
2bda0e17 127{
e2478fde
VZ
128 // Only call wxEntry if the application itself is part of the DLL.
129 // If only the wxWindows library is in the DLL, then the
130 // initialisation will be called when the application implicitly
131 // calls WinMain.
beed393c 132#ifndef WXMAKINGDLL
2bda0e17 133 switch (fdwReason)
b568d04f
VZ
134 {
135 case DLL_PROCESS_ATTACH:
13bdd545 136 return wxEntry(hModule);
2bda0e17 137
b568d04f 138 case DLL_PROCESS_DETACH:
94826170
VZ
139 wxEntryCleanup();
140 break;
b568d04f 141 }
33ac7e6f
KB
142#else
143 (void)hModule;
144 (void)fdwReason;
beed393c 145#endif // !WXMAKINGDLL
e2478fde 146
b568d04f 147 return TRUE;
2bda0e17
KB
148}
149
e2478fde
VZ
150#endif // _WINDLL/!_WINDLL
151
152} // extern "C"
2bda0e17 153
b568d04f
VZ
154#endif // !NOMAIN
155
94826170
VZ
156// ---------------------------------------------------------------------------
157// Convert Windows to argc, argv style
158// ---------------------------------------------------------------------------
159
160wxChar **ConvertToStandardCommandArgs(const wxChar *p, int& argc)
161{
162 // break the command line in words
163 wxArrayString args;
164 if ( p )
165 {
166 args = wxCmdLineParser::ConvertStringToArgs(p);
167 }
168
169 // +1 here for the program name
170 argc = args.GetCount() + 1;
171
172 // and +1 here for the terminating NULL
173 wxChar **argv = new wxChar *[argc + 1];
174
175 argv[0] = new wxChar[MAX_PATH];
176 ::GetModuleFileName(wxhInstance, argv[0], MAX_PATH);
177
178 // copy all the other arguments to wxApp::argv[]
179 for ( int i = 1; i < argc; i++ )
180 {
181 argv[i] = wxStrdup(args[i - 1]);
182 }
183
184 // argv[] must be NULL-terminated
185 argv[argc] = NULL;
186
187 return argv;
188}
189
190#endif // wxUSE_GUI
191
b568d04f 192// ----------------------------------------------------------------------------
e2478fde 193// global HINSTANCE
b568d04f
VZ
194// ----------------------------------------------------------------------------
195
ec67cff1 196#if wxUSE_BASE
e2478fde
VZ
197
198HINSTANCE wxhInstance = 0;
199
b568d04f
VZ
200HINSTANCE wxGetInstance()
201{
202 return wxhInstance;
203}
204
205void wxSetInstance(HINSTANCE hInst)
206{
207 wxhInstance = hInst;
208}
2bda0e17 209
ec67cff1 210#endif // wxUSE_BASE
e2478fde 211