- Prevent line wrap beween "View/Edit" link buttons on status page
[privoxy.git] / win32.c
1 const char win32_rcs[] = "$Id: win32.c,v 1.9.2.1 2002/08/21 17:59:27 oes Exp $";
2 /*********************************************************************
3  *
4  * File        :  $Source: /cvsroot/ijbswa/current/Attic/win32.c,v $
5  *
6  * Purpose     :  Win32 User Interface initialization and message loop
7  *
8  * Copyright   :  Written by and Copyright (C) 2001-2002 members of
9  *                the Privoxy team.  http://www.privoxy.org/
10  *
11  *                Written by and Copyright (C) 1999 Adam Lock
12  *                <locka@iol.ie>
13  *
14  *                This program is free software; you can redistribute it 
15  *                and/or modify it under the terms of the GNU General
16  *                Public License as published by the Free Software
17  *                Foundation; either version 2 of the License, or (at
18  *                your option) any later version.
19  *
20  *                This program is distributed in the hope that it will
21  *                be useful, but WITHOUT ANY WARRANTY; without even the
22  *                implied warranty of MERCHANTABILITY or FITNESS FOR A
23  *                PARTICULAR PURPOSE.  See the GNU General Public
24  *                License for more details.
25  *
26  *                The GNU General Public License should be included with
27  *                this file.  If not, you can view it at
28  *                http://www.gnu.org/copyleft/gpl.html
29  *                or write to the Free Software Foundation, Inc., 59
30  *                Temple Place - Suite 330, Boston, MA  02111-1307, USA.
31  *
32  * Revisions   :
33  *    $Log: win32.c,v $
34  *    Revision 1.9.2.1  2002/08/21 17:59:27  oes
35  *    Sync win32_blurb[] with our standard blurb
36  *
37  *    Revision 1.9  2002/03/31 17:19:00  jongfoster
38  *    Win32 only: Enabling STRICT to fix a VC++ compile warning.
39  *
40  *    Revision 1.8  2002/03/26 22:57:10  jongfoster
41  *    Web server name should begin www.
42  *
43  *    Revision 1.7  2002/03/24 12:03:47  jongfoster
44  *    Name change
45  *
46  *    Revision 1.6  2002/03/16 21:53:28  jongfoster
47  *    VC++ Heap debug option
48  *
49  *    Revision 1.5  2002/03/04 23:47:30  jongfoster
50  *    - Rewritten, simpler command-line pre-parser
51  *    - not using raise(SIGINT) any more
52  *
53  *    Revision 1.4  2001/11/30 21:29:33  jongfoster
54  *    Fixing a warning
55  *
56  *    Revision 1.3  2001/11/16 00:46:31  jongfoster
57  *    Fixing compiler warnings
58  *
59  *    Revision 1.2  2001/07/29 19:32:00  jongfoster
60  *    Renaming _main() [mingw32 only] to real_main(), for ANSI compliance.
61  *
62  *    Revision 1.1.1.1  2001/05/15 13:59:08  oes
63  *    Initial import of version 2.9.3 source tree
64  *
65  *
66  *********************************************************************/
67 \f
68
69 #include "config.h"
70
71 #ifdef _WIN32
72
73 #include <stdio.h>
74
75 #include "project.h"
76 #include "jcc.h"
77 #include "miscutil.h"
78
79 /* Uncomment this if you want to build Win32 as a console app */
80 /* #define _WIN_CONSOLE */
81
82 #ifndef STRICT
83 #define STRICT
84 #endif
85 #include <windows.h>
86
87 #include <stdarg.h>
88 #include <process.h>
89
90 #if defined(_WIN32) && defined(_MSC_VER) && defined(_DEBUG)
91 /* Visual C++ Heap debugging */
92 #include <crtdbg.h>
93 #endif /* defined(_WIN32) && defined(_MSC_VER) && defined(_DEBUG) */
94
95 #include "win32.h"
96
97 const char win32_h_rcs[] = WIN32_H_VERSION;
98
99 const char win32_blurb[] =
100 "Privoxy version " VERSION " for Windows\n"
101 "Copyright (C) 2000-2002 the Privoxy Team (" HOME_PAGE_URL ")\n"
102 "Based on the Internet Junkbuster by Junkbusters Corp.\n"
103 "This is free software; it may be used and copied under the\n"
104 "GNU General Public License: http://www.gnu.org/copyleft/gpl.html .\n"
105 "This program comes with ABSOLUTELY NO WARRANTY OF ANY KIND.\n";
106
107 #ifdef _WIN_CONSOLE
108
109 int hideConsole     = 0;
110
111 #else
112
113 HINSTANCE g_hInstance;
114 int g_nCmdShow;
115
116 static void  __cdecl UserInterfaceThread(void *);
117
118 #endif
119
120
121 /*********************************************************************
122  *
123  * Function    :  WinMain
124  *
125  * Description :  M$ Windows "main" routine:
126  *                parse the `lpCmdLine' param into main's argc and argv variables,
127  *                start the user interface thread (for the systray window), and
128  *                call main (i.e. patch execution into normal startup).
129  *
130  * Parameters  :
131  *          1  :  hInstance = instance handle of this execution
132  *          2  :  hPrevInstance = instance handle of previous execution
133  *          3  :  lpCmdLine = command line string which started us
134  *          4  :  nCmdShow = window show value (MIN, MAX, NORMAL, etc...)
135  *
136  * Returns     :  `main' never returns, so WinMain will also never return.
137  *
138  *********************************************************************/
139 int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
140 {
141    int i;
142    int res;
143    int argc = 1;
144    const char *argv[3];
145    char szModule[MAX_PATH+1];
146 #ifndef _WIN_CONSOLE
147    HANDLE hInitCompleteEvent = NULL;
148 #endif
149
150
151 #if defined(_WIN32) && defined(_MSC_VER) && defined(_DEBUG)
152 #if 0
153    /* Visual C++ Heap debugging */
154
155    /* Get current flag*/
156    int tmpFlag = _CrtSetDbgFlag( _CRTDBG_REPORT_FLAG );
157
158    /* Turn on leak-checking bit */
159    tmpFlag |= _CRTDBG_ALLOC_MEM_DF | _CRTDBG_LEAK_CHECK_DF | _CRTDBG_CHECK_ALWAYS_DF;
160
161    /* Turn off CRT block checking bit */
162    tmpFlag &= ~(_CRTDBG_CHECK_CRT_DF | _CRTDBG_DELAY_FREE_MEM_DF);
163
164    /* Set flag to the new value */
165    _CrtSetDbgFlag( tmpFlag );
166 #endif
167 #endif /* defined(_WIN32) && defined(_MSC_VER) && defined(_DEBUG) */
168
169    /*
170     * Cheat in parsing the command line.  We only ever have at most one
171     * paramater, which may optionally be specified inside double quotes.
172     */
173
174    if (lpCmdLine != NULL)
175    {
176       /* Make writable copy */
177       lpCmdLine = strdup(lpCmdLine);
178    }
179    if (lpCmdLine != NULL)
180    {
181       chomp(lpCmdLine);
182       i = strlen(lpCmdLine);
183       if ((i >= 2) && (lpCmdLine[0] == '\"') && (lpCmdLine[i - 1] == '\"'))
184       {
185          lpCmdLine[i - 1] = '\0';
186          lpCmdLine++;
187       }
188       if (lpCmdLine[0] == '\0')
189       {
190          lpCmdLine = NULL;
191       }
192    }
193
194    GetModuleFileName(hInstance, szModule, MAX_PATH);
195    argv[0] = szModule;
196    argv[1] = lpCmdLine;
197    argv[2] = NULL;
198    argc = ((lpCmdLine != NULL) ? 2 : 1);
199
200 #ifndef _WIN_CONSOLE
201    /* Create a user-interface thread and wait for it to initialise */
202    hInitCompleteEvent = CreateEvent(NULL, TRUE, FALSE, NULL);
203    g_hInstance = hInstance;
204    g_nCmdShow = nCmdShow;
205    _beginthread(UserInterfaceThread, 0, &hInitCompleteEvent);
206    WaitForSingleObject(hInitCompleteEvent, INFINITE);
207    DeleteObject(hInitCompleteEvent);
208 #endif
209
210 #ifdef __MINGW32__
211    res = real_main( argc, argv );
212 #else
213    res = main( argc, argv );
214 #endif
215
216    return res;
217
218 }
219
220 #endif
221
222 /*********************************************************************
223  *
224  * Function    :  InitWin32
225  *
226  * Description :  Initialise windows, setting up the console or windows as appropriate.
227  *
228  * Parameters  :  None
229  *
230  * Returns     :  N/A
231  *
232  *********************************************************************/
233 void InitWin32(void)
234 {
235    WORD wVersionRequested;
236    WSADATA wsaData;
237
238 #ifdef _WIN_CONSOLE
239    SetProcessShutdownParameters(0x100, SHUTDOWN_NORETRY);
240    if (hideConsole)
241    {
242       FreeConsole();
243    }
244 #endif
245    wVersionRequested = MAKEWORD(2, 0);
246    if (WSAStartup(wVersionRequested, &wsaData) != 0)
247    {
248 #ifndef _WIN_CONSOLE
249       MessageBox(NULL, "Cannot initialize WinSock library", "Privoxy Error", 
250          MB_OK | MB_ICONERROR | MB_TASKMODAL | MB_SETFOREGROUND | MB_TOPMOST);  
251 #endif
252       exit(1);
253    }
254
255 }
256
257
258 #ifndef _WIN_CONSOLE
259 #include <signal.h>
260 #include <assert.h>
261
262 #include "win32.h"
263 #include "w32log.h"
264
265
266 /*********************************************************************
267  *
268  * Function    :  UserInterfaceThread
269  *
270  * Description :  User interface thread.  WinMain will wait for us to set
271  *                the hInitCompleteEvent before patching over to `main'.
272  *                This ensures the systray window is active before beginning
273  *                operations.
274  *
275  * Parameters  :
276  *          1  :  pData = pointer to `hInitCompleteEvent'.
277  *
278  * Returns     :  N/A
279  *
280  *********************************************************************/
281 static void __cdecl UserInterfaceThread(void *pData)
282 {
283    MSG msg;
284    HANDLE hInitCompleteEvent = *((HANDLE *) pData);
285
286    /* Initialise */
287    InitLogWindow();
288    SetEvent(hInitCompleteEvent);
289
290    /* Enter a message processing loop */
291    while (GetMessage(&msg, (HWND) NULL, 0, 0))
292    {
293       TranslateMessage(&msg);
294       DispatchMessage(&msg);
295    }
296
297    /* Cleanup */
298    TermLogWindow();
299
300    /* Time to die... */
301    exit(0);
302
303 }
304
305
306 #endif
307
308
309 /*
310   Local Variables:
311   tab-width: 3
312   end:
313 */