-
这是一个关于通信录的源代码,主要特点,可以在他的基础上做一个财务软件。另外本程序还存在一些缺点,没有数据导出,这个我想好了,还没来得及做。...
这是一个关于通信录的源代码,主要特点,可以在他的基础上做一个财务软件。另外本程序还存在一些缺点,没有数据导出,这个我想好了,还没来得及做。-This is a communications recorded on the source code, the main characteristics, he can do on the basis of a financial software. Also this procedure there are still some shortcomings, no data is derived, I think the good that he had still not done.
- 2022-08-25 17:28:49下载
- 积分:1
-
Wince 初学者应当看下这本书,他可以帮助你快速入门.
Wince 初学者应当看下这本书,他可以帮助你快速入门.-Wince beginners should facie this book, he can help you get started.
- 2022-05-31 05:06:42下载
- 积分:1
-
This procedure is mainly developed in the WinCE environment SQLCE database progr...
这个程序主要是在WinCE环境下开发访问SQLCE数据库程序的例子程序,其中有对相关功能进行了组件封装,采用套间线程模型。其中ALTCOMM项目是封装的组件,WinMain项目是调用程序。-This procedure is mainly developed in the WinCE environment SQLCE database program to visit examples of the procedure, which has the relevant functions of the component package, the use of threading model suites. One project is ALTCOMM package components, WinMain is the procedure call.
- 2022-07-19 04:51:00下载
- 积分:1
-
An M*N represent maze,character "#" represent obstacle,"@" represent an dead end...
以一个M*N的长方阵表示迷宫,字符 # 表示障碍, @ 表示"死胡同", * 表示路径上的位置. 本程序只求出一条成功的通路-An M*N represent maze,character "#" represent obstacle,"@" represent an dead end,"*" as position on the route. Only one successful gateway is obstained.
- 2023-06-03 23:45:03下载
- 积分:1
-
i.mx27 driver for nand flash
i.mx27 driver for nand flash
- 2022-03-22 00:12:50下载
- 积分:1
-
AES加密算法(C++实现)
Aes加密算法,用C++实现,封装成了类,方便学习与扩展
- 2023-08-23 08:05:04下载
- 积分:1
-
文件分割器
文件分割器-File splitter
- 2022-02-01 09:17:01下载
- 积分:1
-
一个应用程 和或许对大家有用
it is a application soft
一个应用程 和或许对大家有用
it is a application soft -An application process and may be useful for everyone it is a application soft
- 2022-04-30 15:43:33下载
- 积分:1
-
PJSIP测试程序,学习PJSIP的好资料,一定会对你有所帮助
PJSIP测试程序,学习PJSIP的好资料,一定会对你有所帮助-PJSIP test procedures, learning PJSIP good information, we will help you
- 2022-02-03 16:58:15下载
- 积分: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