📄 dffctbsc.h
字号:
/*******************************************************/ /* "C" Language Integrated Production System */ /* */ /* CLIPS Version 6.05 04/09/97 */ /* */ /* DEFFACTS BASIC COMMANDS HEADER FILE */ /*******************************************************//*************************************************************//* Purpose: Implements core commands for the deffacts *//* construct such as clear, reset, save, undeffacts, *//* ppdeffacts, list-deffacts, and get-deffacts-list. *//* *//* Principal Programmer(s): *//* Gary D. Riley *//* *//* Contributing Programmer(s): *//* Brian L. Donnell *//* *//* Revision History: *//* *//*************************************************************/#ifndef _H_dffctbsc#define _H_dffctbsc#ifndef _H_evaluatn#include "evaluatn.h"#endif #ifdef LOCALE#undef LOCALE#endif#ifdef _DFFCTBSC_SOURCE_#define LOCALE#else#define LOCALE extern#endif#if ANSI_COMPILER LOCALE VOID DeffactsBasicCommands(void); LOCALE VOID UndeffactsCommand(void); LOCALE BOOLEAN Undeffacts(VOID *); LOCALE VOID GetDeffactsListFunction(DATA_OBJECT_PTR); LOCALE VOID GetDeffactsList(DATA_OBJECT_PTR,VOID *); LOCALE SYMBOL_HN *DeffactsModuleFunction(void); LOCALE VOID PPDeffactsCommand(void); LOCALE int PPDeffacts(char *,char *); LOCALE VOID ListDeffactsCommand(void); LOCALE VOID ListDeffacts(char *,VOID *);#else LOCALE VOID DeffactsBasicCommands(); LOCALE VOID UndeffactsCommand(); LOCALE BOOLEAN Undeffacts(); LOCALE VOID GetDeffactsListFunction(); LOCALE VOID GetDeffactsList(); LOCALE SYMBOL_HN *DeffactsModuleFunction(); LOCALE VOID PPDeffactsCommand(); LOCALE int PPDeffacts(); LOCALE VOID ListDeffactsCommand(); LOCALE VOID ListDeffacts();#endif#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -