-
written with a missile attack against aircraft, tracing study
用c写的导弹打飞机,研究追踪问题-written with a missile attack against aircraft, tracing study
- 2023-08-30 11:30:03下载
- 积分:1
-
fasdfsafafs
Corum Online 源码
科隆服务端完整源码,可编译 -fasdfsafafs
- 2022-03-25 04:39:32下载
- 积分:1
-
visual prolog for tyros是PDC公司的一个比较经典的prolog教程。
visual prolog for tyros是PDC公司的一个比较经典的prolog教程。
-visual prolog for tyros is PDC
- 2022-01-26 01:32:03下载
- 积分:1
-
用C++实现LL(1)文法分析
用C++实现LL(1)文法分析
用C++实现LL(1)文法分析
用C++实现LL(1)文法分析-C achieve LL (1) grammar analysis C achieve LL (1) grammar analysis
- 2022-01-28 23:39:28下载
- 积分:1
-
这是一个基于网络游戏的结构,服务器
这是一款基于B/S结构的网络游戏,服务器端可以实现对客户端数据的控制,客户端实现游戏引擎,以及网络通信-This is a based on B/S structure of online games, server-side can be achieved on the control of client data, the client to achieve game engine, and network communication
- 2022-06-19 22:12:18下载
- 积分:1
-
《圣剑英雄传
This an example of an email program . It uses the SMTP Component. To use, you must connect to a SMTP server. Most SMTP servers do not require an account.
- 2023-01-20 08:35:04下载
- 积分:1
-
一个用c++写的简单的学生管理系统,包括添加,删除,按成绩平均分和总分排出顺序...
一个用c++写的简单的学生管理系统,包括添加,删除,按成绩平均分和总分排出顺序-A c++ to write with a simple management system for students, including add, delete, according to results from the average total points and the order of
- 2022-01-26 00:06:59下载
- 积分:1
-
把fortran语言转化成c.
呵呵,丰富的fortran语言现在可以方便的使用了...
把fortran语言转化成c.
呵呵,丰富的fortran语言现在可以方便的使用了-The fortran language into c. Oh, the rich fortran language can now be easily used. . .
- 2022-01-26 16:22:41下载
- 积分:1
-
这是一个简单的小游戏,电脑随机产生一个数字,玩家猜这个数是几,电脑会给出“大一点”或“小一点”的提示...
这是一个简单的小游戏,电脑随机产生一个数字,玩家猜这个数是几,电脑会给出“大一点”或“小一点”的提示-This is a simple little game, a computer generated random numbers, players guess the number is few, the computer would give "little" or "small" tips
- 2022-03-14 20:34:29下载
- 积分:1
-
VC++6.0 在程序内注册ActiveX控件的例子源码
VC++6.0 在程序内注册ActiveX控件的例子源码,在程序中动态注册控件到Windows系统中,注册后所依赖该控件的程序才可正常运行。核心代码如下:
//加载ActiveX控件
HINSTANCE hLib = LoadLibrary(lpszDllName);
if (hLib == NULL)
{
TRACE(_T("%s加载失败
"), lpszDllName);
return FALSE;
}
//获得注册函数DllRegisterServer地址
FARPROC lpDllEntryPoint;
lpDllEntryPoint = GetProcAddress(hLib, _T("DllRegisterServer"));
//调用注册函数DllRegisterServer
if (lpDllEntryPoint != NULL)
{
if (FAILED((*lpDllEntryPoint)()))
{
TRACE(_T("调用DllRegisterServer失败
"));
FreeLibrary(hLib);
return FALSE;
}
else
{
FreeLibrary(hLib);
return TRUE;
}
}
else
{
TRACE(_T("调用DllRegisterServer失败
"));
FreeLibrary(hLib);
return FALSE;
}
更多代码请下载本源码包。
- 2022-08-18 20:45:44下载
- 积分:1