interp_return.hh

来自「Source code for an Numeric Cmputer」· HH 代码 · 共 41 行

HH
41
字号
/********************************************************************* Description: interp_return.hh**   Derived from a work by Thomas Kramer** Author:* License: GPL Version 2* System: Linux*    * Copyright (c) 2005 All rights reserved.** Last change:* $Revision: 1.3 $* $Author: alex_joni $* $Date: 2005/10/30 22:00:40 $** This file declares the public interpreter return values. An* interpreter may extend this list with return values that are* used internally within the interpreters own code, but these* constitute the minimum set.********************************************************************/#ifndef INTERP_RETURN_H#define INTERP_RETURN_H#define INTERP_OK 0#define INTERP_EXIT 1#define INTERP_EXECUTE_FINISH 2#define INTERP_ENDFILE 3#define INTERP_FILE_NOT_OPEN 4/*The return values OK, EXIT, EXECUTE_FINISH, and ENDFILE representnormal, non-error return conditions. FILE_NOT_OPEN is the first(of perhaps many) value that represents an error result. INTERP_MIN_ERRORis therefore the index of the last non-error return value.*/#define INTERP_MIN_ERROR 3#endif				/* INTERP_RETURN_H */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?