-
VC++ 封装了队列类 /// /// /// ///// //this a example for using Queue /////////////////...
VC++ 封装了队列类 /// /// /// ///// //this a example for using Queue ///////////////////////////////////////// #include "Queue.h" //define queue data struct struct QueueData { char data[20] int nId } //define queue typedef TQueue TMyQueue //put data into queue { QueueData data memset(&data, 0, sizeof(data)) strcpy(data.data, "hello!") data.nId = 0 m_pMyQueue.TryPut(data) } //try put data into queue { QueueData data memset(&data, 0, sizeof(data)) strcpy(data.data, "hello!") data.nId = 0 if(m_pMyQueue.TryPut(data) != 0) { MessageBox("put queue error") } else { MessageBox("put queue success") } } //get data from queue { QueueData data memset(&data, 0, sizeof(data)) m_pMyQueue.Get(data) MessageBox(data.data) } //try get data from queue { QueueData data memset(&data, 0, sizeof(data)) m_pMyQueue.TryGet(data) MessageBox(data.data) }-cohort of VC Packaging category /////////////////////////////////////////// this is a example for using Queue ///////
- 2023-07-24 17:35:03下载
- 积分:1
-
ISDN Layer 1 Recommendations
ITU
ISDN Layer 1 Recommendations
ITU-T I.430
- 2022-04-21 14:31:39下载
- 积分:1
-
源代码
飞鸽传书源代码,完整版本,看了就知道你想不想要了-IP Messenger Source Code
- 2022-06-13 00:56:55下载
- 积分:1
-
matlab code for microstrip
matlab code for microstrip
- 2023-04-25 09:05:03下载
- 积分:1
-
一种非常详细的串口通讯程序,在程序下进行串口通讯。和…
非常详细地分析了linux下串口通信的程序,有具体的方法思路以及完整的源代码。-A very detailed analysis of serial communication under linux procedures. And there is a specific way of thinking, as well as complete source code.
- 2023-06-19 13:50:03下载
- 积分:1
-
新exosip2
最新的exosip2-3.0.0源码,供对SIP协议栈有兴趣的同道研究-latest exosip2- 3.0.0 source for the SIP protocol stack are interested in research fellow
- 2022-01-25 20:32:25下载
- 积分:1
-
Chinese version of the GNU GK detailed user manual can be used according to the...
中文版的详细的GNU GK使用手册,根据说明可以用开源的GNU确良GK与我上传另两个工程实现一个完整的VOIP服务端系统-Chinese version of the GNU GK detailed user manual can be used according to the notes of the open-source GNU GK really good and I upload the other two works to achieve a complete VoIP service midrange systems
- 2022-06-03 09:55:57下载
- 积分:1
-
BV调度算法,在MATLAB上的实现,是源程序
BV调度算法,在MATLAB上的实现,是源程序-BV scheduling algorithm in MATLAB
- 2022-05-31 00:28:38下载
- 积分:1
-
介绍了用visual c++编写应用程序调用api函数,从而简化了与硬件通信的过程。...
介绍了用visual c++编写应用程序调用api函数,从而简化了与硬件通信的过程。-introduces the visual c write applications called api function, thus simplifying the hardware and communications process.
- 2022-05-29 22:46:27下载
- 积分:1
-
VC++发送带附件邮件程序
VC++发送带附件邮件程序,使用base64编码,能够实现收发自如,资源消耗小,可以传输文字,图片,附件,
接口已经全部封装好,使用非常方便,欢迎大家参考
- 2022-01-30 11:48:12下载
- 积分:1