YB_Platform/inc/err_num.h

13 lines
371 B
C
Raw Normal View History

2023-07-13 11:27:03 +08:00
#ifndef __ERR_NUM_H__
#define __ERR_NUM_H__
#define OSP_OK (0) /* 正常返回 */
#define OSP_PAR_ILL (1) /* 入参错误 */
#define OSP_PAR_REP (2) /* 入参重复 */
#define OSP_QUE_FULL (3) /* 软队列满 */
#define OSP_QUE_EMPT (4) /* 软队列空 */
#define OSP_MEM_FULL (5) /* 内存申请失败 */
#endif