You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
402 B
C++

#pragma once
#include "module.h"
//设备加密管理
class CEncryptionMgr :public CModule
{
public:
CEncryptionMgr(void);
~CEncryptionMgr(void);
virtual void Ini();
bool IsbLocked();
void UnLock();
void CheckLockState();
private:
bool m_bEncrypt;//是否需要加密
bool m_bLocked;//是否被锁定(锁定之后不能正常运行)
};
extern CEncryptionMgr *gEncryptionMgr;