⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 globlbin.h

📁 clips源代码
💻 H
字号:
   /*******************************************************/   /*      "C" Language Integrated Production System      */   /*                                                     */   /*             CLIPS Version 6.20  01/31/02            */   /*                                                     */   /*             DEFGLOBAL BINARY HEADER FILE            */   /*******************************************************//*************************************************************//* Purpose:                                                  *//*                                                           *//* Principal Programmer(s):                                  *//*      Gary D. Riley                                        *//*                                                           *//* Contributing Programmer(s):                               *//*      Brian L. Donnell                                     *//*                                                           *//* Revision History:                                         *//*                                                           *//*************************************************************/#ifndef _H_globlbin#define _H_globlbin#include "modulbin.h"#include "cstrcbin.h"#include "globldef.h"struct bsaveDefglobal  {   struct bsaveConstructHeader header;   long initial;  };struct bsaveDefglobalModule  {   struct bsaveDefmoduleItemHeader header;  };#define GLOBLBIN_DATA 60struct defglobalBinaryData  {    struct defglobal *DefglobalArray;   long NumberOfDefglobals;   struct defglobalModule *ModuleArray;   long NumberOfDefglobalModules;  };  #define DefglobalBinaryData(theEnv) ((struct defglobalBinaryData *) GetEnvironmentData(theEnv,GLOBLBIN_DATA))#define DefglobalPointer(i) ((struct defglobal *) (&DefglobalBinaryData(theEnv)->DefglobalArray[i]))#ifdef LOCALE#undef LOCALE#endif#ifdef _GLOBLBIN_SOURCE_#define LOCALE#else#define LOCALE extern#endif   LOCALE void                           DefglobalBinarySetup(void *);   LOCALE void                          *BloadDefglobalModuleReference(void *,int);#ifndef _GLOBLBIN_SOURCE_   extern struct defglobal *DefglobalArray;#endif#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -