Reorganizing the repository: swapping out what was HEAD (the old 3.1 branch)
[privoxy.git] / win32.c
similarity index 91%
rename from src/win32.c
rename to win32.c
index 6b9d70c..3115b05 100644 (file)
+++ b/win32.c
@@ -1,7 +1,7 @@
-const char win32_rcs[] = "$Id: win32.c,v 2.1 2002/06/04 16:37:48 jongfoster Exp $";
+const char win32_rcs[] = "$Id: win32.c,v 1.9.2.2 2002/08/27 18:03:40 oes Exp $";
 /*********************************************************************
  *
- * File        :  $Source: /cvsroot/ijbswa//current/src/win32.c,v $
+ * File        :  $Source: /cvsroot/ijbswa/current/Attic/win32.c,v $
  *
  * Purpose     :  Win32 User Interface initialization and message loop
  *
@@ -31,11 +31,11 @@ const char win32_rcs[] = "$Id: win32.c,v 2.1 2002/06/04 16:37:48 jongfoster Exp
  *
  * Revisions   :
  *    $Log: win32.c,v $
- *    Revision 2.1  2002/06/04 16:37:48  jongfoster
- *    Adding Doxygen-style comments to variables
+ *    Revision 1.9.2.2  2002/08/27 18:03:40  oes
+ *    Fixed stupid typo
  *
- *    Revision 2.0  2002/06/04 14:34:21  jongfoster
- *    Moving source files to src/
+ *    Revision 1.9.2.1  2002/08/21 17:59:27  oes
+ *    Sync win32_blurb[] with our standard blurb
  *
  *    Revision 1.9  2002/03/31 17:19:00  jongfoster
  *    Win32 only: Enabling STRICT to fix a VC++ compile warning.
@@ -99,10 +99,6 @@ const char win32_rcs[] = "$Id: win32.c,v 2.1 2002/06/04 16:37:48 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 the Privoxy Team (" HOME_PAGE_URL ")\n"
@@ -111,38 +107,18 @@ const char win32_blurb[] =
 "GNU General Public License: http://www.gnu.org/copyleft/gpl.html .\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 /* ndef _WIN_CONSOLE */
-
+#endif
 
 
 /*********************************************************************