|
Defines |
| #define | _ROUTER_SOURCE_ |
| #define | _STDIO_INCLUDED_ |
Functions |
| globle void | InitializeDefaultRouters (void *theEnv) |
| globle int | EnvPrintRouter (void *theEnv, char *logicalName, char *str) |
| globle int | EnvGetcRouter (void *theEnv, char *logicalName) |
| globle int | EnvUngetcRouter (void *theEnv, int ch, char *logicalName) |
| globle void | ExitCommand (void *theEnv) |
| globle void | EnvExitRouter (void *theEnv, int num) |
| globle void | AbortExit (void *theEnv) |
| globle intBool | AddRouter (char *routerName, int priority, int(*queryFunction)(char *), int(*printFunction)(char *, char *), int(*getcFunction)(char *), int(*ungetcFunction)(int, char *), int(*exitFunction)(int)) |
| globle intBool | EnvAddRouter (void *theEnv, char *routerName, int priority, int(*queryFunction)(void *, char *), int(*printFunction)(void *, char *, char *), int(*getcFunction)(void *, char *), int(*ungetcFunction)(void *, int, char *), int(*exitFunction)(void *, int)) |
| globle intBool | EnvAddRouterWithContext (void *theEnv, char *routerName, int priority, int(*queryFunction)(void *, char *), int(*printFunction)(void *, char *, char *), int(*getcFunction)(void *, char *), int(*ungetcFunction)(void *, int, char *), int(*exitFunction)(void *, int), void *context) |
| globle int | EnvDeleteRouter (void *theEnv, char *routerName) |
| globle int | QueryRouters (void *theEnv, char *logicalName) |
| globle int | EnvDeactivateRouter (void *theEnv, char *routerName) |
| globle int | EnvActivateRouter (void *theEnv, char *routerName) |
| globle void | SetFastLoad (void *theEnv, FILE *filePtr) |
| globle void | SetFastSave (void *theEnv, FILE *filePtr) |
| globle FILE * | GetFastLoad (void *theEnv) |
| globle FILE * | GetFastSave (void *theEnv) |
| globle void | UnrecognizedRouterMessage (void *theEnv, char *logicalName) |
| globle int | PrintNRouter (void *theEnv, char *logicalName, char *str, unsigned long length) |