-
st_asio_wrapper
它是一个c/s网络编程框架,基于对boost.asio的包装(最低在boost-1.49.0上调试过),目的是快速的构建一个c/s系统;效率高、跨平台、完全异步,当然这是从boost.asio继承而来;
自动重连,数据透明传输,自动解决分包粘包问题(这一特性表现得与udp一样);
只支持tcp和udp协议;(It is a c/s network programming framework, based on boost.asio package (minimum tried to increase the boost-1.49.0), the purpose is to build a fast c/s systems efficient, cross-platform, fully asynchronous, Of course, this is from boost.asio inherited
Auto-reconnect, transparent data transmission, automatic sub-stick package to solve the problem (this feature behave the same with udp)
Only supports tcp and udp protocol )
- 2013-08-22 10:10:54下载
- 积分:1
-
无线温湿度传输12864
NRF24L01无线模块传输温湿度数据到12864液晶上,欢迎有需要的朋友来下载,,,,
- 2022-06-26 14:57:42下载
- 积分:1
-
FTP_client_implementation_code
FTP客户端的实现代码FTP client implementation code(FTP client implementation code)
- 2010-08-15 13:45:52下载
- 积分:1
-
Mega48
我的HBS通讯程序范例,使用无极性通讯,压缩文件内有详细的说明。(my HBS communication procedures example, the use of limitless sexual communication, compressed paper a detailed explanation.)
- 2020-11-06 07:49:50下载
- 积分:1
-
西门子PLC上所使用的软件PID程序
可用于单片机的温控PID算法,精准到0.1℃(Temperature control PID algorithm for single chip microcomputer)
- 2018-08-23 15:22:37下载
- 积分:1
-
Demo1
这是我Windows编程课写的一个MFC绘图程序有点像Windows自带的的绘图板(This is my Windows Programming MFC class to write a drawing program somewhat like the Windows built-in graphics tablet)
- 2009-04-20 19:59:30下载
- 积分:1
-
WPF学习案例
【实例简介】
从0基础到入门WPF,首先需要选择合适的编程语言,WPF不仅仅可以使用C#开发,VB也可以!当然现在几乎都是使用C#来开发WPF。
新手学习WPF,要先熟练C#语法,在掌握C#语法之后,通过一些能够上手的WPF案例,在有了数据库基础之后,完成一些增删改查的demo,在学习的过程一定会遇到很多莫名其妙的错误,往往还找不到思绪,这个过程一定要去“享受”!
- 2021-06-25 00:31:00下载
- 积分:1
-
Root_Loci
根轨迹文件 多刚体动力学 方程 根分布 稳定分析 (Root locus document root distribution multibody dynamics equations stability analysis)
- 2014-09-21 21:13:28下载
- 积分:1
-
icePubDll
获取计算机硬件信息的动态链接库,CPU序列号,硬盘序列号,MAC地址等信息
例程:
void gethardinfo()
{
QString str1="";
char buff[1024];
char buff2[1024];
char temp;
typedef int (WINAPI ICEPUB_MACHINEGETINFO)(int typeFlag,char *strInfo);
ICEPUB_MACHINEGETINFO *icePub_machineGetInfo = 0;
HINSTANCE hDLLDrv = LoadLibrary("icePubDll.dll");
if(hDLLDrv)
{
icePub_machineGetInfo = (ICEPUB_MACHINEGETINFO *)GetProcAddress(hDLLDrv, "icePub_machineGetInfo");
}
icePub_machineGetInfo(3,buff);
str1=buff;
int i=0;
int n=0;
n=str1.length();
qDebug()<<n;
for(i=0;i<n;i+=2)
{
temp=buff[i];
buff2[i+1]=temp;
buff2[i]=buff[i+1];
}
QString str2=buff2;
qDebug()<<buff2;
qDebug()<<str2;
}(Access to the computer hardware information dynamic link library, CPU serial number, hard disk serial number, MAC address and other information)
- 2017-12-28 11:45:08下载
- 积分:1
-
H264Player
实现流媒体的播放,一款很好用的播放器源码(Streaming media play)
- 2021-04-09 12:09:00下载
- 积分:1