Adding Doxygen-style comments to variables
[privoxy.git] / src / win32.h
1 #ifndef WIN32_H_INCLUDED
2 #define WIN32_H_INCLUDED
3 #define WIN32_H_VERSION "$Id: win32.h,v 2.0 2002/06/04 14:34:21 jongfoster Exp $"
4 /*********************************************************************
5  *
6  * File        :  $Source: /cvsroot/ijbswa/current/src/win32.h,v $
7  *
8  * Purpose     :  Win32 User Interface initialization and message loop
9  *
10  * Copyright   :  Written by and Copyright (C) 2001-2002 members of
11  *                the Privoxy team.  http://www.privoxy.org/
12  *
13  *                Written by and Copyright (C) 1999 Adam Lock
14  *                <locka@iol.ie>
15  *
16  *                This program is free software; you can redistribute it 
17  *                and/or modify it under the terms of the GNU General
18  *                Public License as published by the Free Software
19  *                Foundation; either version 2 of the License, or (at
20  *                your option) any later version.
21  *
22  *                This program is distributed in the hope that it will
23  *                be useful, but WITHOUT ANY WARRANTY; without even the
24  *                implied warranty of MERCHANTABILITY or FITNESS FOR A
25  *                PARTICULAR PURPOSE.  See the GNU General Public
26  *                License for more details.
27  *
28  *                The GNU General Public License should be included with
29  *                this file.  If not, you can view it at
30  *                http://www.gnu.org/copyleft/gpl.html
31  *                or write to the Free Software Foundation, Inc., 59
32  *                Temple Place - Suite 330, Boston, MA  02111-1307, USA.
33  *
34  * Revisions   :
35  *    $Log: win32.h,v $
36  *    Revision 2.0  2002/06/04 14:34:21  jongfoster
37  *    Moving source files to src/
38  *
39  *    Revision 1.5  2002/03/26 22:57:10  jongfoster
40  *    Web server name should begin www.
41  *
42  *    Revision 1.4  2002/03/24 12:03:47  jongfoster
43  *    Name change
44  *
45  *    Revision 1.3  2001/07/30 22:08:36  jongfoster
46  *    Tidying up #defines:
47  *    - All feature #defines are now of the form FEATURE_xxx
48  *    - Permanently turned off WIN_GUI_EDIT
49  *    - Permanently turned on WEBDAV and SPLIT_PROXY_ARGS
50  *
51  *    Revision 1.2  2001/07/29 18:43:08  jongfoster
52  *    Changing #ifdef _FILENAME_H to FILENAME_H_INCLUDED, to conform to
53  *    ANSI C rules.
54  *
55  *    Revision 1.1.1.1  2001/05/15 13:59:08  oes
56  *    Initial import of version 2.9.3 source tree
57  *
58  *
59  *********************************************************************/
60 \f
61
62 #ifdef __cplusplus
63 extern "C" {
64 #endif
65
66 extern const char win32_blurb[];
67
68 extern void InitWin32(void);
69
70 #ifdef _WIN_CONSOLE
71
72 extern int hideConsole;
73
74 #else  /* ndef _WIN_CONSOLE */
75
76 extern HINSTANCE g_hInstance;
77 extern int g_nCmdShow;
78
79 #endif  /* ndef _WIN_CONSOLE */
80
81 extern int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow);
82
83 /* Revision control strings from this header and associated .c file */
84 extern const char win32_rcs[];
85 extern const char win32_h_rcs[];
86
87 #ifdef __cplusplus
88 } /* extern "C" */
89 #endif
90
91 #endif /* ndef WIN32_H_INCLUDED */
92   
93 /*
94   Local Variables:
95   tab-width: 3
96   end:
97 */