📄 objbin.h
字号:
/*******************************************************/ /* "C" Language Integrated Production System */ /* */ /* CLIPS Version 6.05 04/09/97 */ /* */ /* */ /*******************************************************//*************************************************************//* Purpose: *//* *//* Principal Programmer(s): *//* Brian L. Donnell *//* *//* Contributing Programmer(s): *//* *//* Revision History: *//* *//*************************************************************/#ifndef _H_objbin#define _H_objbin#define DefclassPointer(i) (((i) == -1L) ? NULL : (DEFCLASS *) &defclassArray[i])#define DefclassIndex(cls) (((cls) == NULL) ? -1 : ((struct constructHeader *) cls)->bsaveID)#ifndef _H_object#include "object.h"#endif#ifdef LOCALE#undef LOCALE#endif#ifdef _OBJBIN_SOURCE_#define LOCALE#else#define LOCALE extern#endif#if ANSI_COMPILERLOCALE VOID SetupObjectsBload(void);LOCALE VOID *BloadDefclassModuleReference(int);#elseLOCALE VOID SetupObjectsBload();LOCALE VOID *BloadDefclassModuleReference();#endif#ifndef _OBJBIN_SOURCE_extern DEFCLASS HUGE_ADDR *defclassArray;#endif#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -