acl  3.5.3.0
hserror.hpp
浏览该文件的文档.
1 #pragma once
2 #include "../acl_cpp_define.hpp"
3 
4 #ifndef ACL_CLIENT_ONLY
5 
6 #define HS_ERR_INVALID_REPLY -7 // 服务器返回数据错误
7 #define HS_ERR_EMPTY -6 // 服务器返回数据为空
8 #define HS_ERR_PARAMS -5 // 输入参数错误
9 #define HS_ERR_NOT_OPEN -4 // 表未打开
10 #define HS_ERR_READ -3 // 读数据失败
11 #define HS_ERR_WRITE -2 // 写数据失败
12 #define HS_ERR_CONN -1 // 连接失败
13 #define HS_ERR_OK 0 // 正确
14 
15 namespace acl {
16 
18 {
19 public:
20  hserror();
21  ~hserror();
22 
23  static const char* get_serror(int errnum);
24 };
25 
26 } // namespace acl
27 
28 #endif // ACL_CLIENT_ONLY
#define ACL_CPP_API