⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 win32.c

📁 一个不错的服务代理器
💻 C
字号:
char *win32_rcs = "$Id: win32.c,v 1.11 1998/02/06 00:23:52 ACJC Exp $";/* Written and copyright 1997 Anonymous Coders and Junkbusters Corporation. * Distributed under the GNU General Public License; see the README file. * This code comes with NO WARRANTY. http://www.junkbusters.com/ht/en/gpl.html */#ifdef _WIN32#include <stdio.h>#ifdef REGEX#include "gnu_regex.h"#endif#include "jcc.h"#include <windows.h>extern int hideConsole;void InitWin32(){	WORD wVersionRequested;	WSADATA wsaData;	SetProcessShutdownParameters(0x100, SHUTDOWN_NORETRY);	if (hideConsole) {		FreeConsole();	}	wVersionRequested = MAKEWORD(2, 0);	if (WSAStartup(wVersionRequested, &wsaData) != 0) {		exit(1);	}}char *win32_blurb ="Internet Junkbuster Proxy(TM) Version " VERSION " for Windows is Copyright (C) 1997-8\n""by Junkbusters Corp.  This is free software; it may be used and copied under\n""the GNU General Public License: http://www.junkbusters.com/ht/en/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""        http://www.junkbusters.com/ht/en/ijbwin.html#v" VERSION_MAJOR "\n""\n""The Internet Junkbuster Proxy(TM) is running and ready to serve!\n";#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -