?? dffnxbin.h
字號:
/*******************************************************/ /* "C" Language Integrated Production System */ /* */ /* CLIPS Version 6.20 01/31/02 */ /* */ /* */ /*******************************************************//*************************************************************//* Purpose: *//* *//* Principal Programmer(s): *//* Brian L. Donnell *//* *//* Contributing Programmer(s): *//* *//* Revision History: *//* *//*************************************************************/#ifndef _H_dffnxbin#define _H_dffnxbin#if DEFFUNCTION_CONSTRUCT && (BLOAD || BLOAD_ONLY || BLOAD_AND_BSAVE)#include "dffnxfun.h"#ifdef LOCALE#undef LOCALE#endif#ifdef _DFFNXBIN_SOURCE_#define LOCALE#else#define LOCALE extern#endifLOCALE void SetupDeffunctionsBload(void *);LOCALE void *BloadDeffunctionModuleReference(void *,int);#define DFFNXBIN_DATA 24struct deffunctionBinaryData { DEFFUNCTION *DeffunctionArray; long DeffunctionCount; long ModuleCount; DEFFUNCTION_MODULE *ModuleArray; }; #define DeffunctionBinaryData(theEnv) ((struct deffunctionBinaryData *) GetEnvironmentData(theEnv,DFFNXBIN_DATA))#define DeffunctionPointer(i) (((i) == -1L) ? NULL : (DEFFUNCTION *) &DeffunctionBinaryData(theEnv)->DeffunctionArray[i])#endif#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -