/*******************************************************/ /* "C" Language Integrated Production System */ /* */ /* CLIPS Version 6.40 08/25/16 */ /* */ /* DEFGLOBAL COMMANDS HEADER FILE */ /*******************************************************/ /*************************************************************/ /* Purpose: */ /* */ /* Principal Programmer(s): */ /* Gary D. Riley */ /* */ /* Contributing Programmer(s): */ /* Brian L. Dantes */ /* */ /* Revision History: */ /* */ /* 6.23: Correction for FalseSymbol/TrueSymbol. DR0859 */ /* */ /* 6.24: Renamed BOOLEAN macro type to intBool. */ /* */ /* 6.30: Removed conditional code for unsupported */ /* compilers/operating systems (IBM_MCW and */ /* MAC_MCW). */ /* */ /* Added const qualifiers to remove C++ */ /* deprecation warnings. */ /* */ /* Converted API macros to function calls. */ /* */ /* 6.40: Removed LOCALE definition. */ /* */ /* Pragma once and other inclusion changes. */ /* */ /* Added support for booleans with . */ /* */ /* Removed use of void pointers for specific */ /* data structures. */ /* */ /* ALLOW_ENVIRONMENT_GLOBALS no longer supported. */ /* */ /* UDF redesign. */ /* */ /*************************************************************/ #ifndef _H_globlcom #pragma once #define _H_globlcom void DefglobalCommandDefinitions(Environment *); void SetResetGlobalsCommand(Environment *,UDFContext *,UDFValue *); bool SetResetGlobals(Environment *,bool); void GetResetGlobalsCommand(Environment *,UDFContext *,UDFValue *); bool GetResetGlobals(Environment *); void ShowDefglobalsCommand(Environment *,UDFContext *,UDFValue *); void ShowDefglobals(Environment *,const char *,Defmodule *); #endif /* _H_globlcom */