📄 portstatus.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 + -