加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
make_func.h 675 Bytes
一键复制 编辑 原始数据 按行查看 历史
luanhailiang 提交于 2012-08-09 20:44 . My mudos
#ifndef MAKE_FUNC_H
#define MAKE_FUNC_H
#define MAX_FUNC 2048 /* If we need more than this we're in trouble! */
#define VOID 1
#define INT 2
#define STRING 3
#define OBJECT 4
#define MAPPING 5
#define MIXED 6
#define UNKNOWN 7
#define FLOAT 8
#define FUNCTION 9
#define BUFFER 10
extern int num_buff;
extern int op_code, efun_code, efun1_code;
extern char *oper_codes[MAX_FUNC];
extern char *efun_codes[MAX_FUNC], *efun1_codes[MAX_FUNC];
extern char *efun_names[MAX_FUNC], *efun1_names[MAX_FUNC];
extern char *key[MAX_FUNC], *buf[MAX_FUNC];
extern int arg_types[400], last_current_type;
char *ctype PROT((int));
char *etype PROT((int));
#endif
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化