⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 queue.h

📁 CVoiceChat.rar.局域网音频聊天软件
💻 H
字号:
// Queue.h: interface for the CQueue class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_QUEUE_H__5978391D_155A_4E99_AEBE_8989B5ED9BF4__INCLUDED_)
#define AFX_QUEUE_H__5978391D_155A_4E99_AEBE_8989B5ED9BF4__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "QueueItem.h"
class CQueue  
{
public:
	CQueueItem *front;
	CQueueItem *back;
	int count;
	CRITICAL_SECTION CriticalSection; //添加临界区对象
public:
	CQueue();
	bool InsertItem(CQueueItem *item);
	int Itemnum();
	char *TakeOutItem();
	bool deleteall();
	virtual ~CQueue();
	
};

#endif // !defined(AFX_QUEUE_H__5978391D_155A_4E99_AEBE_8989B5ED9BF4__INCLUDED_)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -