多数据源中间件标准版1.0

AppReg.h 1.1KB

12345678910111213141516171819202122232425262728293031
  1. /**********************************************/
  2. /*FileName:AppReg.h */
  3. /**********************************************/
  4. #ifdef DllAppReg
  5. #else
  6. #define DllAppReg _declspec(dllimport)
  7. #endif
  8. //授权当前是否有效
  9. extern"C" DllAppReg bool RegValid();
  10. //读取公司名字
  11. extern"C" DllAppReg bool ReadSoftCod(char* szInfo);
  12. //读取软件名字
  13. extern"C" DllAppReg bool ReadSoftName(char* szInfo);
  14. //读取软件版本
  15. extern"C" DllAppReg bool ReadSoftVer(char* szInfo);
  16. //读取用户名字
  17. extern"C" DllAppReg bool ReadUserName(char* szInfo);
  18. //读取用户名字
  19. extern"C" DllAppReg bool ReadUserID(char* szInfo);
  20. //读取授权写入时间
  21. extern"C" DllAppReg bool ReadTime(unsigned char* pYear, unsigned char* pMonth, unsigned char* pDay);
  22. //读取授权时间
  23. extern"C" DllAppReg bool ReadAvailableTime(unsigned char* pYear, unsigned char* pMonth, unsigned char* pDay);
  24. //读取中间件 IVR授权数量
  25. extern"C" DllAppReg bool ReadCCM_IVRNum(unsigned int* pIVR);
  26. //读取中间件 Agent授权数量
  27. extern"C" DllAppReg bool ReadCCM_AgentNum(unsigned int* pAgentNum);
  28. //读取LeCall用户授权数量
  29. extern"C" DllAppReg bool ReadLeCallUserNum(unsigned int* pLeCallUserNum);