-
The right mouse click the color box to pin down and hold Ke any lessons either a...
鼠标点击右边颜色框拖住不放,柯任意吸取屏幕任一个地方颜色,转换成RGB格式,如果需要其它格式,大家可以修改源码实现。-The right mouse click the color box to pin down and hold Ke any lessons either a local color screen, converted to RGB format, other formats if necessary, we can modify the source code to achieve.
- 2022-05-14 04:17:43下载
- 积分:1
-
redeem category based on the decomposition of the word automatic functions, the...
基于CString类的自动分解单词的函数,对于文本文件的处理比较有用-redeem category based on the decomposition of the word automatic functions, the text file handling more useful
- 2023-01-05 23:25:03下载
- 积分:1
-
Paint program based on single document can draw a straight line rectangle circle...
基于单文档的画图程序
可以画直线 矩形 圆形 椭圆等
线型、粗细、颜色可任意设置,
也可选择有无填充色,可保存文件,并打开-Paint program based on single document can draw a straight line rectangle circle ellipse and line style, thickness, color can be arbitrarily set, can also choose whether the fill color, save the file, and open the
- 2022-02-28 13:59:33下载
- 积分:1
-
简单计算器
这是一个delphi版的简单计算器,源码版,大家可以参考,无第三方控件,支持D7-XE5。
- 2022-03-13 10:19:19下载
- 积分:1
-
digital monitoring system of tilt control classes and vc prepared. Direct access...
数字监控系统的云台控制类,用vc编写.可以直接使用.pelco-d或pelco-d协议-digital monitoring system of tilt control classes and vc prepared. Direct access. Pelco-d or pelco-d agreement
- 2023-04-23 06:30:03下载
- 积分:1
-
用于哈夫曼的压缩程序,可以对图象处理
用于哈夫曼的压缩程序,可以对图象处理-for Huffman compression process to image processing. .
- 2022-01-25 20:28:42下载
- 积分:1
-
C++的ppt讲义,以及一些实例,是学习C++很好的材料
C++的ppt讲义,以及一些实例,是学习C++很好的材料-C++ The ppt lectures, as well as some examples of learning C++ Good material
- 2022-02-25 17:09:29下载
- 积分:1
-
运动目标跟踪示例程序,对于学习和开发目标跟踪帮助很大
运动目标跟踪示例程序,对于学习和开发目标跟踪帮助很大-code for tracking
- 2022-08-03 01:23:48下载
- 积分:1
-
运用HTML5中的canvas绘制图表
运用HTML5中的canvas画布绘制图表,并能够在各个浏览器中打开显示。适用于PC端,也适用于移动端,既可以在Android系统中打开也可以在iOS中打开。
- 2022-08-11 01:07:58下载
- 积分: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