?? gpscontrol.h
字號:
/**************************************************************************/
/* */
/* Copyright (c) 2000-2008 YULONG Company */
/* 宇龍計算機通信科技(深圳)有限公司 版權所有 2000-2008 */
/* */
/* PROPRIETARY RIGHTS of YULONG Company are involved in the */
/* subject matter of this material. All manufacturing, reproduction, use,*/
/* and sales rights pertaining to this subject matter are governed by the */
/* license agreement. The recipient of this software implicitly accepts */
/* the terms of the license. */
/* 本軟件文檔資料是宇龍公司的資產,任何人士閱讀和使用本資料必須獲得 */
/* 相應的書面授權,承擔保密責任和接受相應的法律約束. */
/* */
/**************************************************************************/
//////////////////////////////////////////////////////////////////////////
//
// GpsContor.h: interface for the CGpsContor class.
//
//////////////////////////////////////////////////////////////////////////
#if !defined _GPSCONTOR_H_
#define _GPSCONTOR_H_
#include "GpsDevice.h"
class CGpsControl
{
public:
CGpsControl();
~CGpsControl();
GPS_POSITION* GetAllData();
GPSData* GetUnFiltedData();
void SetMessageWnd( HWND hWnd );
BOOL Config(int nComID/*串口號*/,
int nBaudRate/*波特率*/,
int nByteSize/*字節大小*/);
BOOL PowerReset();
BOOL Create();
void Destroy();
void SetNewHandle(HANDLE hNewHandle);
private:
HWND m_hWnd;
BOOL m_bCreate;
DWORD m_hThreadId;
HANDLE m_hThread;
CGpsDevice m_gpsDevice;
};
#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -