dffnxbin.h

来自「clips源代码」· C头文件 代码 · 共 62 行

H
62
字号
   /*******************************************************/   /*      "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 + =
减小字号Ctrl + -
显示快捷键?