2019-09-04 16:26:06 +08:00

14 lines
153 B
C
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#pragma once
/*
类似http的错误码设计
0成功
<400: 客户端的错
>500: 服务器的错
*/
enum ErrorCode_e
{
ERRNO_OK = 0,
};