aisystem.c
来自「利用C语言实现的人工智能系统」· C语言 代码 · 共 32 行
C
32 行
/*
* 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 + =
减小字号Ctrl + -
显示快捷键?