testgps.cpp

来自「这是一个简单的软件开发包(SDK)」· C++ 代码 · 共 37 行

CPP
37
字号
#include "stdafx.h"
#include "TestGPS.h"
#include "TestGPSDlg.h"

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

BEGIN_MESSAGE_MAP(CTestGPSApp, CWinApp)
	//{{AFX_MSG_MAP(CTestGPSApp)
	//}}AFX_MSG
	ON_COMMAND(ID_HELP, CWinApp::OnHelp)
END_MESSAGE_MAP()

CTestGPSApp::CTestGPSApp()
{
}

CTestGPSApp theApp;

BOOL CTestGPSApp::InitInstance()
{
#ifdef _AFXDLL
	Enable3dControls();
#else
	Enable3dControlsStatic();
#endif

	CTestGPSDlg dlg;
	m_pMainWnd = &dlg;
	dlg.DoModal();

	return FALSE;
}

⌨️ 快捷键说明

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