|
|
@@ -235,7 +235,7 @@ public:
|
|
|
|
|
|
CFingerPrintFSM():m_bCancelRegister(false), m_bCancelMatch(false), m_bExit(false),
|
|
|
m_testResult(Error_Succeed), m_csDevSN(""), m_iInWhatPage(PageType_Other),
|
|
|
- m_csMachineType(""), m_terminalNo(""),m_fwbSN(""), m_version(""), m_machineVersion("")
|
|
|
+ m_csMachineType(""), m_terminalNo(""), m_machineVersion("")
|
|
|
{
|
|
|
HARDWARE_ENTITY_RESET_ENTITYID(m_entCode, 0x204);
|
|
|
}
|
|
|
@@ -269,12 +269,11 @@ public:
|
|
|
void DeleteBmp(int type);
|
|
|
ErrorCodeEnum DeleteFileIfExisted(const char* fileName);
|
|
|
|
|
|
- ErrorCodeEnum GetDevCatInfo(DevCategoryInfo& devInfo);//废弃
|
|
|
- ErrorCodeEnum GetDevState(int &state);//废弃
|
|
|
+ ErrorCodeEnum GetDevCatInfo(DevCategoryInfo& devInfo);
|
|
|
+ ErrorCodeEnum GetDevState(int &state);
|
|
|
|
|
|
int Initial();
|
|
|
bool GetDevInitFlag() { return m_bOpened; }
|
|
|
- void ResetDevInitFlag() { m_bOpened = false; }//蓝牙多合一使用
|
|
|
void SetInWhatPage(int bValue) { m_iInWhatPage = bValue; }
|
|
|
|
|
|
DevStateEnum GetDevState(){
|
|
|
@@ -293,12 +292,7 @@ private:
|
|
|
bool m_bExit;
|
|
|
int m_iInWhatPage/*在哪个页面,区分首页,用户桌面,其他页*/;
|
|
|
|
|
|
- CSimpleStringA m_csDevSN;//蓝牙多合一设备sn
|
|
|
-
|
|
|
- CSimpleStringA m_csMachineType,m_terminalNo;//site,terminalNo只是临时使用,可以去除
|
|
|
- CSimpleStringA m_fwbSN;//FWBDevSN值
|
|
|
- CSimpleStringA m_version;//蓝牙多合一pinpad版本
|
|
|
- CSimpleStringA m_machineVersion;//终端大版本
|
|
|
+ CSimpleStringA m_csDevSN, m_csMachineType, m_terminalNo, m_machineVersion;
|
|
|
};
|
|
|
//废弃
|
|
|
struct ScanTask : public ITaskSp
|