⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 screenthread.h

📁 基于USB接口的GPS应用程序
💻 H
字号:
//---------------------------------------------------------------------------

#ifndef screenthreadH
#define screenthreadH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include "gbl_var.h"

class TForm1;
class GPS_Nav;
class GPS_Func;
//---------------------------------------------------------------------------
class ScreenThread : public TThread
{
private:
        TForm1 *p_form;
        GPS_Nav *p_gpsnav;
        GPS_Func *p_gpsfunc;
        unsigned short count;
        allch_rawdata_disp DispRawdata;
        navinfo_disp DispNavInfo;
        navresult_channel  NavResult[CH_NUM];
        channel_disp  result_pt[CH_NUM];
protected:
        void __fastcall Execute();
public:
        __fastcall ScreenThread(bool CreateSuspended, void* p);
        void __fastcall update_disp(void);
};
//---------------------------------------------------------------------------
#endif

⌨️ 快捷键说明

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