meta_com.h

来自「MTK手机开发工具软件,可以从电脑上下载文件到手机存储空间.在软件开发过程中,当」· C头文件 代码 · 共 49 行

H
49
字号
//---------------------------------------------------------------------------

#ifndef Meta_comH
#define Meta_comH
//---------------------------------------------------------------------------
#include <Classes.hpp>
//---------------------------------------------------------------------------

#include "meta.h"
#include "SLA_Challenge.h"


class Meta_com : public TThread
{            
private:
protected:
    void __fastcall Execute();
public:
    enum
    {
        MC_STATE_INIT,
        MC_STATE_TRAN,
        MC_STATE_IDLE,
        MC_STATE_MAX
    };
    bool m_bIsPreTerminate;
    unsigned int m_nStatus;
    FAT_DiskInfo_T m_fatDiskInfo;
    AnsiString asMsg;
    
    int m_nPercent;
    int m_nSentBytes;
    int m_nTotalBytes;
    int m_nBaudRate;

    __fastcall Meta_com(bool CreateSuspended);
    bool __fastcall EnterMETA( void );
    bool __fastcall ExitMeta(void);
    void __fastcall ShowMessage(void);
    void __fastcall SyncUpdateProgress(void);
    void __fastcall UpdateProgress(void);
    void __fastcall InitProgress(void);
    void __fastcall FinisthMessage(void);
    void __fastcall UpdateFilename(void);
    void __fastcall UpdateBaudrate(void);
};
//---------------------------------------------------------------------------
#endif

⌨️ 快捷键说明

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