コード例 #1
0
ファイル: globlcmp.c プロジェクト: rdegraci/CLIPS
static void BeforeDefglobalsToCode(
    void *theEnv)
{
    MarkConstructBsaveIDs(theEnv,DefglobalData(theEnv)->DefglobalModuleIndex);
}
コード例 #2
0
ファイル: genrccmp.c プロジェクト: OS2World/DEV-LISP-Clips
/***************************************************
  NAME         : ReadyDefgenericsForCode
  DESCRIPTION  : Sets index of generic-functions
                   for use in compiled expressions
  INPUTS       : None
  RETURNS      : Nothing useful
  SIDE EFFECTS : BsaveIndices set
  NOTES        : None
 ***************************************************/
static void ReadyDefgenericsForCode()
  {
   MarkConstructBsaveIDs(DefgenericModuleIndex);
  }
コード例 #3
0
ファイル: dfinscmp.c プロジェクト: DrItanium/AdventureEngine
/***************************************************
  NAME         : ReadyDefinstancesForCode
  DESCRIPTION  : Sets index of deffunctions
                   for use in compiled expressions
  INPUTS       : None
  RETURNS      : Nothing useful
  SIDE EFFECTS : BsaveIndices set
  NOTES        : None
 ***************************************************/
static void ReadyDefinstancesForCode(
  void *theEnv)
  {
   MarkConstructBsaveIDs(theEnv,DefinstancesData(theEnv)->DefinstancesModuleIndex);
  }
コード例 #4
0
ファイル: dffnxcmp.c プロジェクト: guitarpoet/php-clips
/***************************************************
  NAME         : ReadyDeffunctionsForCode
  DESCRIPTION  : Sets index of deffunctions
                   for use in compiled expressions
  INPUTS       : None
  RETURNS      : Nothing useful
  SIDE EFFECTS : BsaveIndices set
  NOTES        : None
 ***************************************************/
static void ReadyDeffunctionsForCode(
  void *theEnv)
  {
   MarkConstructBsaveIDs(theEnv,DeffunctionData(theEnv)->DeffunctionModuleIndex);
  }
コード例 #5
0
ファイル: genrccmp.c プロジェクト: DrItanium/AdventureEngine
/***************************************************
  NAME         : ReadyDefgenericsForCode
  DESCRIPTION  : Sets index of generic-functions
                   for use in compiled expressions
  INPUTS       : None
  RETURNS      : Nothing useful
  SIDE EFFECTS : BsaveIndices set
  NOTES        : None
 ***************************************************/
static void ReadyDefgenericsForCode(
  void *theEnv)
  {
   MarkConstructBsaveIDs(theEnv,DefgenericData(theEnv)->DefgenericModuleIndex);
  }
コード例 #6
0
ファイル: dfinscmp.c プロジェクト: OS2World/DEV-LISP-Clips
/***************************************************
  NAME         : ReadyDefinstancesForCode
  DESCRIPTION  : Sets index of deffunctions
                   for use in compiled expressions
  INPUTS       : None
  RETURNS      : Nothing useful
  SIDE EFFECTS : BsaveIndices set
  NOTES        : None
 ***************************************************/
static void ReadyDefinstancesForCode()
  {
   MarkConstructBsaveIDs(DefinstancesModuleIndex);
  }
コード例 #7
0
ファイル: dffctcmp.c プロジェクト: DrItanium/AdventureEngine
static void BeforeDeffactsToCode(
  void *theEnv)
  {
   MarkConstructBsaveIDs(theEnv,DeffactsData(theEnv)->DeffactsModuleIndex);
  }
コード例 #8
0
ファイル: globlcmp.c プロジェクト: atrniv/CLIPS
static void BeforeDefglobalsToCode(
  void *theEnv,
  EXEC_STATUS)
  {
   MarkConstructBsaveIDs(theEnv,execStatus,DefglobalData(theEnv,execStatus)->DefglobalModuleIndex);
  }