-
在VC,MFC中显示图像,如GIF,JPEG等格式
在VC,MFC中显示图像,如GIF,JPEG等格式-in VC, MFC showed images such as GIF, JPEG format, etc.
- 2022-02-14 16:47:38下载
- 积分:1
-
在datawindow中实现日历下拉选择功能
在datawindow中实现日历下拉选择功能-datawindow in achieving the drop-down selection of functional calendar
- 2022-07-08 14:17:42下载
- 积分:1
-
医院门诊信息系统 (PIS)
医院门诊信息系统是根据 SQL 服务器的基本临床患者信息数据 — — 数据基础是包括
它用来添加新的患者信息和搜索设施以获取文件快速......等
- 2022-03-21 18:37:00下载
- 积分:1
-
C++ Classic books, study entry can refer to the use of, personal feel good effec...
C++经典书籍,学习入门可以参考使用,个人觉得效果很好。-C++ Classic books, study entry can refer to the use of, personal feel good effect.
- 2022-05-21 11:01:59下载
- 积分:1
-
在HGE1.81版本的基础上增加了对MFC的支持,可以方便地用它设计出各种工具类软件。tutorials中增加了tutorial03MFC作为MFC程序开发的示...
在HGE1.81版本的基础上增加了对MFC的支持,可以方便地用它设计出各种工具类软件。tutorials中增加了tutorial03MFC作为MFC程序开发的示例。-In HGE1.81 version based on the increased support of MFC, you can easily use it to design various types of software tools. has been added tutorials as tutorial03MFC sample MFC program development.
- 2022-10-21 17:40:04下载
- 积分:1
-
这是一本徐关佑的一本关于机器视觉方面的书,是学习机器视觉技术人员的很好的助手...
这是一本徐关佑的一本关于机器视觉方面的书,是学习机器视觉技术人员的很好的助手-This is a Xu Guan-yu" s a book about books on machine vision, machine vision and technical personnel to learn a good assistant
- 2022-10-18 04:00:03下载
- 积分:1
-
This book would not have introduced, I believe many people have heard so much ab...
这本书就不用介绍了,相信很多人都对它久闻大名。这是第三版第一卷中文版。字体非常清晰,适合收藏。我搜了一下本站里也有,但从大小上判断应该不会有这个质量好。-This book would not have introduced, I believe many people have heard so much about it daimyo. This is the third edition of the first volume in Chinese. The font is very clear, suitable for collection. Site where I found a bit there, but the size of the judgments should not have this quality.
- 2023-02-16 00:05:13下载
- 积分:1
-
圣剑英雄传II双刃剑番外篇(源程序)
圣剑英雄传II双刃剑番外篇(源程序)-SHENG- JIAN Heroes II double-edged sword Bowaipian (source)
- 2023-09-04 13:15:03下载
- 积分:1
-
Semantic search tool, the use of sophisticated modeling ontology language owl of...
语义搜索工具,本体建模采用成熟的owl语言开源可借鉴-Semantic search tool, the use of sophisticated modeling ontology language owl of open source can learn from
- 2022-07-18 17:48:10下载
- 积分:1
-
一个线程池的一个类,基本使用如下:
一个线程驰的类, 下面的是基本的使用方法 struct TSession { SOCKET socket int id } class myIocp:public CIOCP { public: void OnRead(void * p, char * buf, int len) void OnAccept(SOCKET socket) void OnClose(void * p) } void myIocp::OnAccept(SOCKET socket) { TSession *s = new TSession s->socket = socket //这里可以对连接的session进行自己的操作,例如给id找一个唯一的值 SetIoCompletionPort(socket, s) // 使连接socket与一个自定义结构体关联 } void myIocp::OnRead(void * p, char * buf, int len) { TSession *s = (TSession *)p send(s->socket, buf, len, 0) // 这里只是简单的把收到的消息返回给客户端 ... } void myIocp::OnClose(void * p) { delete p } myIoncp iocp main() { ... iocp.listen(4311) // 开始监听网络端口,等待客户端连接 ... }-A class for thread pool,basic usage below:
struct TSession { SOCKET socket int id } class myIocp:public CIOCP
{ public:
void OnRead(void* p, char* buf, int len)
void OnAccept(SOCKET socket)
void OnClose(void* p) }
void myIocp::OnAccept(SOCKET socket)
{ TSession*s = new TSession s->socket = socket
//here you can do something about connecti
- 2022-07-17 05:14:52下载
- 积分:1