gpsfatstruct.cpp
来自「用VC写的监控中心后台程序。 代码全」· C++ 代码 · 共 51 行
CPP
51 行
// GpsFatStruct.cpp: implementation of the CGpsFatStruct class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "GpsSC.h"
#include "GpsFatStruct.h"
#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
CGpsFatStruct::CGpsFatStruct()
{
m_lLinkLibTotal = 0;
m_lLinkLibAddr = 0;
m_lDataLibTotal = 0;
m_lDataLibAddr = 0;
m_lSignLibTotal = 0;
m_lSignLibAddr = 0;
m_lRegionLibTotal = 0;
m_lRegionLibAddr = 0;
m_lRecordLibTotal = 0;
m_lRecordLibAddr = 0;
}
CGpsFatStruct::~CGpsFatStruct()
{
}
void CGpsFatStruct::Clear()
{
m_lLinkLibTotal = 0;
m_lLinkLibAddr = 0;
m_lDataLibTotal = 0;
m_lDataLibAddr = 0;
m_lSignLibTotal = 0;
m_lSignLibAddr = 0;
m_lRegionLibTotal = 0;
m_lRegionLibAddr = 0;
m_lRecordLibTotal = 0;
m_lRecordLibAddr = 0;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?