?? modulbsc.h
字號:
/*******************************************************/ /* "C" Language Integrated Production System */ /* */ /* CLIPS Version 6.20 01/31/02 */ /* */ /* DEFMODULE 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_modulbsc#define _H_modulbsc#ifndef _H_evaluatn#include "evaluatn.h"#endif#ifdef LOCALE#undef LOCALE#endif#ifdef _MODULBSC_SOURCE_#define LOCALE#else#define LOCALE extern#endif#if ENVIRONMENT_API_ONLY#define GetDefmoduleList(theEnv,a) EnvGetDefmoduleList(theEnv,a)#define ListDefmodules(theEnv,a) EnvListDefmodules(theEnv,a)#else#define GetDefmoduleList(a) EnvGetDefmoduleList(GetCurrentEnvironment(),a)#define ListDefmodules(a) EnvListDefmodules(GetCurrentEnvironment(),a)#endif LOCALE void DefmoduleBasicCommands(void *); LOCALE void EnvGetDefmoduleList(void *,DATA_OBJECT_PTR); LOCALE void PPDefmoduleCommand(void *); LOCALE int PPDefmodule(void *,char *,char *); LOCALE void ListDefmodulesCommand(void *); LOCALE void EnvListDefmodules(void *,char *);#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -