Permissionsfile / actions file changes:
[privoxy.git] / win32.h
1 #ifndef _WIN32_H
2 #define _WIN32_H
3 #define WIN32_H_VERSION "$Id: win32.h,v 1.1 2001/05/13 21:57:07 administrator Exp $"
4 /*********************************************************************
5  *
6  * File        :  $Source: /home/administrator/cvs/ijb/win32.h,v $
7  *
8  * Purpose     :  Win32 User Interface initialization and message loop
9  *
10  * Copyright   :  Written by and Copyright (C) 2001 the SourceForge
11  *                IJBSWA team.  http://ijbswa.sourceforge.net
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  *
37  *********************************************************************/
38 \f
39
40 #ifdef __cplusplus
41 extern "C" {
42 #endif
43
44 extern const char win32_blurb[];
45
46 extern void InitWin32(void);
47
48 #ifdef _WIN_CONSOLE
49 extern int hideConsole;
50 #endif /*def _WIN_CONSOLE */
51
52 extern HINSTANCE g_hInstance;
53 extern int g_nCmdShow;
54
55 extern int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow);
56
57 /* Revision control strings from this header and associated .c file */
58 extern const char win32_rcs[];
59 extern const char win32_h_rcs[];
60
61 #ifdef __cplusplus
62 } /* extern "C" */
63 #endif
64
65 #endif /* ndef _WIN32_H */
66
67 /*
68   Local Variables:
69   tab-width: 3
70   end:
71 */