win32.h 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. #ifndef WIN32_H_INCLUDED
  2. #define WIN32_H_INCLUDED
  3. /*********************************************************************
  4. *
  5. * File : $Source: /cvsroot/ijbswa/current/win32.h,v $
  6. *
  7. * Purpose : Win32 User Interface initialization and message loop
  8. *
  9. * Copyright : Written by and Copyright (C) 2001-2002 members of
  10. * the Privoxy team. https://www.privoxy.org/
  11. *
  12. * Written by and Copyright (C) 1999 Adam Lock
  13. * <locka@iol.ie>
  14. *
  15. * This program is free software; you can redistribute it
  16. * and/or modify it under the terms of the GNU General
  17. * Public License as published by the Free Software
  18. * Foundation; either version 2 of the License, or (at
  19. * your option) any later version.
  20. *
  21. * This program is distributed in the hope that it will
  22. * be useful, but WITHOUT ANY WARRANTY; without even the
  23. * implied warranty of MERCHANTABILITY or FITNESS FOR A
  24. * PARTICULAR PURPOSE. See the GNU General Public
  25. * License for more details.
  26. *
  27. * The GNU General Public License should be included with
  28. * this file. If not, you can view it at
  29. * http://www.gnu.org/copyleft/gpl.html
  30. * or write to the Free Software Foundation, Inc., 59
  31. * Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  32. *
  33. *********************************************************************/
  34. extern const char win32_blurb[];
  35. extern void InitWin32(void);
  36. #ifdef _WIN_CONSOLE
  37. extern int hideConsole;
  38. #endif /*def _WIN_CONSOLE */
  39. extern HINSTANCE g_hInstance;
  40. extern int g_nCmdShow;
  41. extern int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow);
  42. #endif /* ndef WIN32_H_INCLUDED */
  43. /*
  44. Local Variables:
  45. tab-width: 3
  46. end:
  47. */