-
Serial Communications (Windows API)
串口通信类(WINDOWS API)-Serial Communications (Windows API)
- 2022-01-27 20:26:40下载
- 积分:1
-
将Unicode汉字编码的Unicode代码放入
把中文转化为Unicode码
把中文转化为Unicode码-put into Unicode code put into Unicode Chinese code
- 2022-07-13 21:10:32下载
- 积分:1
-
用dephi开发的幸运52,就象中央电视台的李勇的哪个节目,起编程思想很有价值
用dephi开发的幸运52,就象中央电视台的李勇的哪个节目,起编程思想很有价值-development with a lucky 52, as Central TV program in which Li Yong played a very valuable programming ideas
- 2022-03-03 05:23:29下载
- 积分:1
-
one done with C# chat tools. . Interested to see put on the download!
一个用C#做的聊天工具。。有兴趣的就下载看看把!-one done with C# chat tools. . Interested to see put on the download!
- 2022-10-16 20:50:03下载
- 积分:1
-
来自国外的一个完整的下载程序,好就好在它支持代理服务器,并且实现了断点续传!是一个不可多的的好东东!很好的参考。 在这基础上在继续发展,可以做出一个很棒的下载程...
来自国外的一个完整的下载程序,好就好在它支持代理服务器,并且实现了断点续传!是一个不可多的的好东东!很好的参考。 在这基础上在继续发展,可以做出一个很棒的下载程序。一般的下载程序都支持了多线程,今后,我们也会加入关于VB编写多线程的示例。-from abroad a complete download, it is good because the proxy server support, and achieved a HTTP! It is not a good number of Eastern! Good reference. On this basis the development, can make a great download. Download the general support of multithreading that in the future we will join the preparation of multi-threaded VB examples.
- 2022-03-22 17:09:07下载
- 积分:1
-
基于MFC和STL平台的字符串类,可以快速实现…
基于MFC和STL平台的字符串类,可以实现在快速字符串搜索-Platform based on the MFC and the STL string class, can be achieved in the fast string search
- 2022-04-30 10:30:06下载
- 积分:1
-
Range Hood air volume air
吸油烟机风量风压测试系统的设计和开发的全部过程。 实现串口通讯技术和使用Excel 2000调出报表的方法是本系统开发的关键之处。作者在本文中重点论述了其具体的设计和实现方法,通过串口通讯来实现数据采集,进而实现对吸油烟机风量风压的检验,并按标准要求打印测试报告、绘制出风压风量和效率曲线。-Range Hood air volume air-testing system in the design and development of the whole process. Serial communication technology and the use of Excel 2000 statements for the transfer of the system is the key to it. In this paper focuses on the specific design and implementation, through serial communications to data collection, so as to realize the right amount of wind Range Hood Pressure testing, in accordance with standard print test reports and draw air-air volume and efficiency curve.
- 2022-03-04 05:11:01下载
- 积分:1
-
Rose培训教程
书籍语言: 简体中文
书籍类型: 文学作品
授权方式: 免费软件
书籍大小: 1...
Rose培训教程
书籍语言: 简体中文
书籍类型: 文学作品
授权方式: 免费软件
书籍大小: 1024 KB
-Rose Training Guide books Language : English books types : literary license : free software books Size : 1024 KB
- 2022-05-15 09:23:09下载
- 积分:1
-
多媒体定时器定时1MS,很准
多媒体定时器定时1MS,很准-multimedia timer regularly rungs, very-
- 2022-02-10 05:26:11下载
- 积分: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