📄 gpsfatstruct.cpp
字号:
// 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -