12345678910111213141516171819202122232425262728293031323334353637 |
- #ifndef _FINGERPRINT_USER_ERRORCODE_H
- #define _FINGERPRINT_USER_ERRORCODE_H
- #pragma once
- #define FingerPrint_UserErrorCode_Start 0x20400200
- #define FingerPrint_UserErrorCode_GET_DLLNAME_FAILED_ONINIT ( FingerPrint_UserErrorCode_Start + 1 ) //指纹仪实体初始化时,获取适配器名称失败 - LogWarn
- #define FingerPrint_UserErrorCode_OPEN_ROOT_FAILED_ONINIT ( FingerPrint_UserErrorCode_Start + 2 ) //指纹仪实体初始化时,打开root.ini文件失败 - LogWarn
- #define FingerPrint_UserErrorCode_VENDOR_ADAPTER_NOT_EXIST ( FingerPrint_UserErrorCode_Start + 3 ) //厂商适配器不存在dep中 - LogWarn
- #define FingerPrint_UserErrorCode_LOAD_ADAPTER_FAILED ( FingerPrint_UserErrorCode_Start + 4 ) //加载厂商适配器失败 - LogWarn
- #define FingerPrint_UserErrorCode_CREATE_COMPONENT_FAILED ( FingerPrint_UserErrorCode_Start + 5 ) //加载适配器成功后,CreateDevComponent失败 - LogWarn
- #define FingerPrint_UserErrorCode_GET_DEP_PATH_FAILED_REGISTER ( FingerPrint_UserErrorCode_Start + 6 ) //采集接口,获取dep路径失败 - LogWarn
- #define FingerPrint_UserErrorCode_NO_IMAGE_IN_DEP_REGISTER ( FingerPrint_UserErrorCode_Start + 7 ) //注册时,采集接口调用成功,但未在dep中找到图片文件 - LogError
- #define FingerPrint_UserErrorCode_GETFEATURE_FAILED_REGISTER ( FingerPrint_UserErrorCode_Start + 8 ) //注册时,采集接口调用成功,但返回的特征值为空 - LogError
- #define FingerPrint_UserErrorCode_GETTEMPLATE_FAILED ( FingerPrint_UserErrorCode_Start + 9 ) //注册时,合成特征模板失败 - LogError
- #define FingerPrint_UserErrorCode_REGISTER_FAILED ( FingerPrint_UserErrorCode_Start + 10 ) //手动Exit退出业务(WARN)- LogWarn
- #define FingerPrint_UserErrorCode_GET_DEP_PATH_FAILED_MATCH ( FingerPrint_UserErrorCode_Start + 11 ) //匹配接口,获取dep路径失败 - LogWarn
- #define FingerPrint_UserErrorCode_NO_IMAGE_IN_DEP_MATCH ( FingerPrint_UserErrorCode_Start + 12 ) //匹配时,采集接口调用成功,但未在dep中找到图片文件 - LogError
- #define FingerPrint_UserErrorCode_GETFEATURE_FAILED_MATCH ( FingerPrint_UserErrorCode_Start + 13 ) //匹配时,采集接口调用成功,但返回的特征值为空 - LogError
- #define FingerPrint_UserErrorCode_MATCH_TIME ( FingerPrint_UserErrorCode_Start + 14 ) //匹配接口耗时 (仅用作性能分析,非错误,WARN)- LogWarn
- #define FingerPrint_UserErrorCode_INVOKE_MATCH_FAILED ( FingerPrint_UserErrorCode_Start + 15 ) //厂商匹配接口返回失败(Match) - LogWarn
- #define FingerPrint_UserErrorCode_MATCH_FAILED ( FingerPrint_UserErrorCode_Start + 16 ) //手动Exit退出业务(WARN) - LogWarn
- #define FingerPrint_UserErrorCode_LOGWARN_TERM_INFO ( FingerPrint_UserErrorCode_Start + 17 ) //告警硬件模块信息
- #define FingerPrint_UserErrorCode_NO_ADAPTER_FILE ( FingerPrint_UserErrorCode_Start + 18 ) //未找到适配器文件
- #define FingerPrint_UserErrorCode_FEATURELEN_ISNOTRIGHT ( FingerPrint_UserErrorCode_Start + 19 ) //返回的指纹特征长度错误
- #define FingerPrint_UserErrorCode_DEVOPENFAILED_MATCH ( FingerPrint_UserErrorCode_Start + 20 ) //指纹DevOpen失败,业务调用Match时报错
- #define FingerPrint_UserErrorCode_DEVOPENFAILED_GETFINGERPRINT ( FingerPrint_UserErrorCode_Start + 21 ) //指纹DevOpen失败,业务调用GetFingerPrint时报错
- #define FingerPrint_UserErrorCode_DEVOPENFAILED_GenerateTemplate ( FingerPrint_UserErrorCode_Start + 22 ) //指纹DevOpen失败,业务调用GenerateTemplate时报错
- #define FingerPrint_UserErrorCode_DEVOPENFAILED_GetImageAndFeature ( FingerPrint_UserErrorCode_Start + 23 ) //指纹DevOpen失败,业务调用GetImageAndFeature时报错
- #define FingerPrint_UserErrorCode_DEVOPENFAILED_GetImageAndFeatureEx ( FingerPrint_UserErrorCode_Start + 24 ) //指纹DevOpen失败,业务调用GetImageAndFeatureEx时报错
- #define FingerPrint_UserErrorCode_ROOT_INFO ( FingerPrint_UserErrorCode_Start + 25 ) //root信息
- #endif
|