-
VOD practical tool that can MPG document, separate video and audio, video compre...
VOD实用工具,可以从MPG文件之中, 分离视频和音频, 视频直接压缩保存DIV5格式, 音频直接保存为WAV格式, 支持双音轨 必须预先安装DSHOW组件 (AX文件:REGSVR32 /C /S [FILENAME].AX) -VOD practical tool that can MPG document, separate video and audio, video compression preservation DIV5 direct format, audio stored directly to WAV format, and supports dual-track must be pre-installed DSHOW components (AX documents : gating/C/S [FILENAME]. AX )
- 2022-01-24 14:55:19下载
- 积分:1
-
五子棋棋盘,都是界面实现,很初级的东东。
五子棋棋盘,都是界面实现,很初级的东东。-Gobang board, all interfaces, it is elementary Dongdong.
- 2022-03-02 13:34:58下载
- 积分:1
-
圆孔的夫琅和费衍射,以动画的形式表现出圆孔衍射的过程及最后的图样...
圆孔的夫琅和费衍射,以动画的形式表现出圆孔衍射的过程及最后的图样-Round hole of Fraunhofer diffraction to the form of animation to show the process of circular aperture diffraction and the final drawings
- 2022-10-18 06:40:02下载
- 积分:1
-
图像直方图,均衡化直方图。
图像直方图,均衡化直方图。-image histogram, histogram equalization.
- 2023-08-28 15:05:03下载
- 积分:1
-
button adjustment with the size of the work area
用按钮调整工作区的大小-button adjustment with the size of the work area
- 2022-02-12 21:36:32下载
- 积分:1
-
这个也是java上课用的程序,适合于初学者。建议初学者下载看。...
这个也是java上课用的程序,适合于初学者。建议初学者下载看。-This is also a java program for beginners. Suggest download.
- 2022-03-18 01:10:40下载
- 积分:1
-
7段计数器
When a Seven Segment Display is interface with PIC Microcontroller it needs 当 7 段显示器跟 PIC 微型控制器交互时, 需要至少 7 针来显示一个值。但是实际应用中, 就像电子表,计算器,等,需要 3-6 个 7 段显示。 假设我们需要 6 位数显示,我们需要的 7 段乘以 6 显示,就是 42 针。 这样我们真是需要的 微型控制器是 42 输出针。 这是资源浪费且不经济
- 2023-05-29 12:15:03下载
- 积分:1
-
在多文档界面的状态条上放一个TAB控件,可以在状态条上直接激活或最大化各个子窗口...
在多文档界面的状态条上放一个TAB控件,可以在状态条上直接激活或最大化各个子窗口-In the multi-document interface, status bar placed on a TAB control that can directly activate the status bar, or to maximize each child window
- 2022-01-22 17:22:18下载
- 积分:1
-
我的毕业设计经典的模拟1990坦克,代码全部自己写的,非常有参考价值,想学习做简单游戏的可以从这学起~~~鄙视抄袭。。。源代码仅仅做参考用...
我的毕业设计经典的模拟1990坦克,代码全部自己写的,非常有参考价值,想学习做简单游戏的可以从这学起~~~鄙视抄袭。。。源代码仅仅做参考用-I graduated from the simulation of the classic 1990 design tanks, all of its own written code, very useful, want to learn the game can be so simple to learn from ~ ~ ~ despise plagiarism. . . Only a reference source by ~ ~ ~
- 2022-02-26 20:09:00下载
- 积分: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