Example #1
0
globle void EnvAgenda(
    void *theEnv,
    char *logicalName,
    void *vTheModule)
{
    struct defmodule *theModule = (struct defmodule *) vTheModule;

    ListItemsDriver(theEnv,logicalName,theModule,(char*)"activation",(char*)"activations",
                    EnvGetNextActivation,NULL,PrintActivation,NULL);
}
Example #2
0
globle void EnvShowBreaks(
  void *theEnv,
  char *logicalName,
  void *vTheModule)
  {
   ListItemsDriver(theEnv,logicalName,(struct defmodule *) vTheModule,
                   NULL,NULL,
                   EnvGetNextDefrule,(char *(*)(void *)) GetConstructNameString,
                   NULL,EnvDefruleHasBreakpoint);
   }