📄 defins.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_defins#define _H_defins#if DEFINSTANCES_CONSTRUCT#define GetDefinstancesName(x) GetConstructNameString((struct constructHeader *) x)#define GetDefinstancesPPForm(x) GetConstructPPForm((struct constructHeader *) x)#define GetDefinstancesNamePointer(x) GetConstructNamePointer((struct constructHeader *) x)#define SetDefinstancesPPForm(d,ppf) SetConstructPPForm((struct constructHeader *) d,ppf)#define GetDefinstancesModuleName(x) GetConstructModuleName((struct constructHeader *) x)struct definstances;#ifndef _H_constrct#include "constrct.h"#endif#ifndef _H_cstrccom#include "cstrccom.h"#endif#ifndef _H_moduldef#include "moduldef.h"#endif#ifndef _H_object#include "object.h"#endiftypedef struct definstancesModule { struct defmoduleItemHeader header; } DEFINSTANCES_MODULE; typedef struct definstances { struct constructHeader header; unsigned busy; EXPRESSION *mkinstance; } DEFINSTANCES;#ifdef LOCALE#undef LOCALE#endif#ifdef _DEFINS_SOURCE_#define LOCALE#else#define LOCALE extern#endif#if ANSI_COMPILERLOCALE VOID SetupDefinstances(void);LOCALE VOID *GetNextDefinstances(VOID *);LOCALE VOID *FindDefinstances(char *);LOCALE int IsDefinstancesDeletable(VOID *);LOCALE VOID UndefinstancesCommand(void);LOCALE SYMBOL_HN *GetDefinstancesModuleCommand(void);LOCALE BOOLEAN Undefinstances(VOID *);#if DEBUGGING_FUNCTIONSLOCALE VOID PPDefinstancesCommand(void);LOCALE VOID ListDefinstancesCommand(void);LOCALE VOID ListDefinstances(char *,struct defmodule *);#endifLOCALE VOID GetDefinstancesListFunction(DATA_OBJECT *);LOCALE VOID GetDefinstancesList(DATA_OBJECT *,struct defmodule *);#elseLOCALE VOID SetupDefinstances();LOCALE VOID *GetNextDefinstances();LOCALE VOID *FindDefinstances();LOCALE int IsDefinstancesDeletable();LOCALE SYMBOL_HN *GetDefinstancesModuleCommand();LOCALE VOID UndefinstancesCommand();LOCALE BOOLEAN Undefinstances();#if DEBUGGING_FUNCTIONSLOCALE VOID PPDefinstancesCommand();LOCALE VOID ListDefinstancesCommand();LOCALE VOID ListDefinstances();#endifLOCALE VOID GetDefinstancesListFunction();LOCALE VOID GetDefinstancesList();#endif#ifndef _DEFINS_SOURCE_extern int DefinstancesModuleIndex;#endif#endif#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -