win32.c
上传用户:qunlip
上传日期:2007-01-04
资源大小:203k
文件大小:1k
源码类别:

代理服务器

开发平台:

Visual C++

  1. char *win32_rcs = "$Id: win32.c,v 1.11 1998/02/06 00:23:52 ACJC Exp $";
  2. /* Written and copyright 1997 Anonymous Coders and Junkbusters Corporation.
  3.  * Distributed under the GNU General Public License; see the README file.
  4.  * This code comes with NO WARRANTY. http://www.junkbusters.com/ht/en/gpl.html
  5.  */
  6. #ifdef _WIN32
  7. #include <stdio.h>
  8. #ifdef REGEX
  9. #include "gnu_regex.h"
  10. #endif
  11. #include "jcc.h"
  12. #include <windows.h>
  13. extern int hideConsole;
  14. void InitWin32()
  15. {
  16. WORD wVersionRequested;
  17. WSADATA wsaData;
  18. SetProcessShutdownParameters(0x100, SHUTDOWN_NORETRY);
  19. if (hideConsole) {
  20. FreeConsole();
  21. }
  22. wVersionRequested = MAKEWORD(2, 0);
  23. if (WSAStartup(wVersionRequested, &wsaData) != 0) {
  24. exit(1);
  25. }
  26. }
  27. char *win32_blurb =
  28. "Internet Junkbuster Proxy(TM) Version " VERSION " for Windows is Copyright (C) 1997-8n"
  29. "by Junkbusters Corp.  This is free software; it may be used and copied undern"
  30. "the GNU General Public License: http://www.junkbusters.com/ht/en/gpl.html.n"
  31. "This program comes with ABSOLUTELY NO WARRANTY OF ANY KIND.n"
  32. "n"
  33. "For information about how to to configure the proxy and your browser, seen"
  34. "        http://www.junkbusters.com/ht/en/ijbwin.html#v" VERSION_MAJOR "n"
  35. "n"
  36. "The Internet Junkbuster Proxy(TM) is running and ready to serve!n"
  37. ;
  38. #endif