X-Git-Url: http://www.privoxy.org/gitweb/?a=blobdiff_plain;f=src%2Fwin32.c;h=6b9d70cd325d1aeaa6b80e255d0244c1b58b3b68;hb=b284d5ca9fe1fbd0b86f9b1eb189577b65a31c90;hp=41dea70bab3038faab1d33c4a3c64de80944b6c2;hpb=2da19eb8eff90f6c9a7cb46ff891643e89d50a55;p=privoxy.git diff --git a/src/win32.c b/src/win32.c index 41dea70b..6b9d70cd 100644 --- a/src/win32.c +++ b/src/win32.c @@ -1,7 +1,7 @@ -const char win32_rcs[] = "$Id: win32.c,v 1.9 2002/03/31 17:19:00 jongfoster Exp $"; +const char win32_rcs[] = "$Id: win32.c,v 2.1 2002/06/04 16:37:48 jongfoster Exp $"; /********************************************************************* * - * File : $Source: /cvsroot/ijbswa/current/win32.c,v $ + * File : $Source: /cvsroot/ijbswa//current/src/win32.c,v $ * * Purpose : Win32 User Interface initialization and message loop * @@ -31,6 +31,12 @@ const char win32_rcs[] = "$Id: win32.c,v 1.9 2002/03/31 17:19:00 jongfoster Exp * * Revisions : * $Log: win32.c,v $ + * Revision 2.1 2002/06/04 16:37:48 jongfoster + * Adding Doxygen-style comments to variables + * + * Revision 2.0 2002/06/04 14:34:21 jongfoster + * Moving source files to src/ + * * Revision 1.9 2002/03/31 17:19:00 jongfoster * Win32 only: Enabling STRICT to fix a VC++ compile warning. * @@ -93,30 +99,50 @@ const char win32_rcs[] = "$Id: win32.c,v 1.9 2002/03/31 17:19:00 jongfoster Exp const char win32_h_rcs[] = WIN32_H_VERSION; +/** + * A short introductory text about Privoxy. Used for the "About" box + * or the console startup message. + */ const char win32_blurb[] = "Privoxy version " VERSION " for Windows\n" -"Copyright (C) 2000-2002 by members of the Privoxy Team\n" -"Copyright (C) 1997-8 by Junkbusters Corp.\n" +"Copyright (C) 2000-2002 the Privoxy Team (" HOME_PAGE_URL ")\n" +"Based on the Internet Junkbuster by Junkbusters Corp.\n" "This is free software; it may be used and copied under the\n" "GNU General Public License: http://www.gnu.org/copyleft/gpl.html .\n" -"This program comes with ABSOLUTELY NO WARRANTY OF ANY KIND.\n" -"\n" -"For information about how to to configure the proxy and your browser, see\n" -" " HOME_PAGE_URL "\n" -"\n"; +"This program comes with ABSOLUTELY NO WARRANTY OF ANY KIND.\n"; + #ifdef _WIN_CONSOLE + +/** + * Hide the console. If set, the program will disconnect from the + * console and run in the background. This allows the command-prompt + * window to close. + */ int hideConsole = 0; -#else +#else /* ndef _WIN_CONSOLE */ + + +/** + * The application instance handle. + */ HINSTANCE g_hInstance; + + +/** + * The command to show the window that was specified at startup. + */ int g_nCmdShow; + static void __cdecl UserInterfaceThread(void *); -#endif + +#endif /* ndef _WIN_CONSOLE */ + /*********************************************************************