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

📄 portstatus.cpp

📁 这是G.723和G.729的音频编解码的源代码
💻 CPP
字号:
// PortStatus.cpp: implementation of the CPortStatus class.
//
//////////////////////////////////////////////////////////////////////

#include "stdafx.h"
#include "PortStatus.h"

#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif

//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////

CPortStatus::CPortStatus()
{
	m_bOwnToken=FALSE;
	m_bRequestTokenRefused=FALSE;
	for(int i=0; i<MAXPORTNUMBER; i++)
		m_byWatchingThisPort[MAXPORTNUMBER]=0;
	m_byThisPortWatched=0;
	m_bAddConference=FALSE;
	m_bRequestToken=FALSE;
	m_bWantWatch=FALSE;
	m_byThisPortWatching=FALSE;
	m_bWantWatchRefused=FALSE;
}

CPortStatus::~CPortStatus()
{

}

⌨️ 快捷键说明

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