You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
284 B
9 lines
284 B
#include "errno.hpp"
|
|
|
|
namespace iflytop {
|
|
const Errno Errno::OK(0, "OK");
|
|
const Errno Errno::ERR_USER_NAME_EXIST(101, "用户名已存在");
|
|
const Errno Errno::ERR_USER_PASSWD_ERROR(102, "密码错误");
|
|
const Errno Errno::ERR_USER_SPACE_FULL(103, "无法添加更多用户");
|
|
|
|
} // namespace iflytop
|