📄 exception.h
字号:
/* $Id: exception.h,v 1.2 2003/09/17 11:26:10 tmoerlan Exp $ *//* List of all of the standard service exceptions */#ifndef _EXCEPTION_H_#define _EXCEPTION_H_/* Exceptions 0..RESERVED_BOUND are reserved for the application to declare as its own exceptions. */#define RESERVED_BOUND 31/* Service exceptions */#define E_NOT_ENOUGH_RB (1+RESERVED_BOUND)#define E_NON_POSITIVE_RB (2+RESERVED_BOUND)#define E_NO_ROUTE (3+RESERVED_BOUND)#define E_SERVICE_NOT_PRESENT (4+RESERVED_BOUND)#define E_SERVICE_ERROR (5+RESERVED_BOUND)#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -