#ifndef __HGBASEERR_H__ #define __HGBASEERR_H__ /* 无错误 */ #define HGBASE_ERR_OK 0x00000000L /* 一般错误 */ #define HGBASE_ERR_FAIL 0x00000001L /* 内存不足 */ #define HGBASE_ERR_OUTOFMEMORY 0x00000002L /* 参数非法 */ #define HGBASE_ERR_INVALIDARG 0x00000003L /* 无访问权限 */ #define HGBASE_ERR_ACCESSDENIED 0x00000004L /* 数据非法 */ #define HGBASE_ERR_INVALIDDATA 0x00000005L /* 未实现 */ #define HGBASE_ERR_NOTIMPL 0x00000006L /* 不支持该功能 */ #define HGBASE_ERR_NOTSUPPORT 0x00000007L /* 超时 */ #define HGBASE_ERR_TIMEOUT 0x00000008L /* 文件不存在 */ #define HGBASE_ERR_FILENOTEXIST 0x00000009L /* 加载动态库失败 */ #define HGBASE_ERR_LOADLIBRARY 0x0000000AL /* 文件错误 */ #define HGBASE_ERR_FILEERROR 0x0000000BL #endif /* __HGBASEERR_H__ */