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

📄 aisystem.c

📁 利用C语言实现的人工智能系统
💻 C
字号:
/*
* ARTIFICIAL INTELLIGENCE SYSTEM
*
* Copyright (C) 2007-Present Intelligence Realm Inc. All rights reserved.
*
* See LICENSE.TXT document for licensing information.
*/

#include "aisystem.h"
#ifdef WIN32
#include "boinc_win.h"
#define WIN32_LEAN_AND_MEAN
#define _SECURE_SCL 0
#define _CRT_SECURE_NO_WARNINGS 0
#include "windows.h" 
#endif

int WINAPI WinMain(HINSTANCE hInst, HINSTANCE hPrevInst, LPSTR Args, int WinMode)
{
	/* Unix applications begin with main() while Windows applications begin with WinMain, 
	   so this just makes WinMain() process the command line and invoke main() */
	LPSTR command_line;
	char* argv[100];
	int argc;

	command_line = (LPSTR)GetCommandLine();
	argc = parse_command_line(command_line, argv);
	
	return main(argc, argv);
}

⌨️ 快捷键说明

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