| 12345678910111213141516171819202122232425262728293031 |
- /**********************************************/
- /*FileName:AppReg.h */
- /**********************************************/
- #ifdef DllAppReg
- #else
- #define DllAppReg _declspec(dllimport)
- #endif
- //授权当前是否有效
- extern"C" DllAppReg bool RegValid();
- //读取公司名字
- extern"C" DllAppReg bool ReadSoftCod(char* szInfo);
- //读取软件名字
- extern"C" DllAppReg bool ReadSoftName(char* szInfo);
- //读取软件版本
- extern"C" DllAppReg bool ReadSoftVer(char* szInfo);
- //读取用户名字
- extern"C" DllAppReg bool ReadUserName(char* szInfo);
- //读取用户名字
- extern"C" DllAppReg bool ReadUserID(char* szInfo);
- //读取授权写入时间
- extern"C" DllAppReg bool ReadTime(unsigned char* pYear, unsigned char* pMonth, unsigned char* pDay);
- //读取授权时间
- extern"C" DllAppReg bool ReadAvailableTime(unsigned char* pYear, unsigned char* pMonth, unsigned char* pDay);
- //读取中间件 IVR授权数量
- extern"C" DllAppReg bool ReadCCM_IVRNum(unsigned int* pIVR);
- //读取中间件 Agent授权数量
- extern"C" DllAppReg bool ReadCCM_AgentNum(unsigned int* pAgentNum);
- //读取LeCall用户授权数量
- extern"C" DllAppReg bool ReadLeCallUserNum(unsigned int* pLeCallUserNum);
|