00001 #ifndef WIN32_H_INCLUDED
00002 #define WIN32_H_INCLUDED
00003 #define WIN32_H_VERSION "$Id: win32.h,v 2.1 2002/06/04 16:34:52 jongfoster Exp $"
00004 /* ******************************************************************
00005 * $Source: /cvsroot/ijbswa/current/src/win32.h,v $
00006 * ******************************************************************
00007 *
00008 * Written by and Copyright (C) 2001-2002 members of
00009 * the Privoxy team. http://www.privoxy.org/
00010 *
00011 * Written by and Copyright (C) 1999 Adam Lock
00012 * <locka@iol.ie>
00013 *
00014 * This program is free software; you can redistribute it
00015 * and/or modify it under the terms of the GNU General
00016 * Public License as published by the Free Software
00017 * Foundation; either version 2 of the License, or (at
00018 * your option) any later version.
00019 *
00020 * This program is distributed in the hope that it will
00021 * be useful, but WITHOUT ANY WARRANTY; without even the
00022 * implied warranty of MERCHANTABILITY or FITNESS FOR A
00023 * PARTICULAR PURPOSE. See the GNU General Public
00024 * License for more details.
00025 *
00026 * The GNU General Public License should be included with
00027 * this file. If not, you can view it at
00028 * http://www.gnu.org/copyleft/gpl.html
00029 * or write to the Free Software Foundation, Inc., 59
00030 * Temple Place - Suite 330, Boston, MA 02111-1307, USA.
00031 *
00032 * *****************************************************************/
00033 /**
00034 * @file
00035 *
00036 * Win32 User Interface initialization and message loop
00037 *
00038 *
00039 * $Log: win32.h,v $
00040 * Revision 2.1 2002/06/04 16:34:52 jongfoster
00041 * Adding a missing #if
00042 *
00043 * Revision 2.0 2002/06/04 14:34:21 jongfoster
00044 * Moving source files to src/
00045 *
00046 * Revision 1.5 2002/03/26 22:57:10 jongfoster
00047 * Web server name should begin www.
00048 *
00049 * Revision 1.4 2002/03/24 12:03:47 jongfoster
00050 * Name change
00051 *
00052 * Revision 1.3 2001/07/30 22:08:36 jongfoster
00053 * Tidying up #defines:
00054 * - All feature #defines are now of the form FEATURE_xxx
00055 * - Permanently turned off WIN_GUI_EDIT
00056 * - Permanently turned on WEBDAV and SPLIT_PROXY_ARGS
00057 *
00058 * Revision 1.2 2001/07/29 18:43:08 jongfoster
00059 * Changing #ifdef _FILENAME_H to FILENAME_H_INCLUDED, to conform to
00060 * ANSI C rules.
00061 *
00062 * Revision 1.1.1.1 2001/05/15 13:59:08 oes
00063 * Initial import of version 2.9.3 source tree
00064 *
00065 *
00066 */
00067 /* *****************************************************************/
00068
00069
00070 #ifdef __cplusplus
00071 extern "C" {
00072 #endif
00073
00074 extern const char win32_blurb[];
00075
00076 extern void InitWin32(void);
00077
00078 #ifdef _WIN_CONSOLE
00079
00080 extern int hideConsole;
00081
00082 #else /* ndef _WIN_CONSOLE */
00083
00084 extern HINSTANCE g_hInstance;
00085 extern int g_nCmdShow;
00086
00087 #endif /* ndef _WIN_CONSOLE */
00088
00089 extern int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow);
00090
00091 /* Revision control strings from this header and associated .c file */
00092
00093 /** Version information about win32.c. */
00094 extern const char win32_rcs[];
00095
00096 /** Version information about win32.h. */
00097 extern const char win32_h_rcs[];
00098
00099 #ifdef __cplusplus
00100 } /* extern "C" */
00101 #endif
00102
00103 #endif /* ndef WIN32_H_INCLUDED */
00104
00105 /*
00106 Local Variables:
00107 tab-width: 3
00108 end:
00109 */
1.2.15