00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024 #ifndef _H_modulutl
00025 #define _H_modulutl
00026
00027 #ifndef _H_symbol
00028 #include "symbol.h"
00029 #endif
00030 #ifndef _H_moduldef
00031 #include "moduldef.h"
00032 #endif
00033
00034 #ifdef LOCALE
00035 #undef LOCALE
00036 #endif
00037
00038 #ifdef _MODULUTL_SOURCE_
00039 #define LOCALE
00040 #else
00041 #define LOCALE extern
00042 #endif
00043
00044 LOCALE unsigned FindModuleSeparator(char *);
00045 LOCALE SYMBOL_HN *ExtractModuleName(void *,unsigned,char *);
00046 LOCALE SYMBOL_HN *ExtractConstructName(void *,unsigned,char *);
00047 LOCALE char *ExtractModuleAndConstructName(void *,char *);
00048 LOCALE void *FindImportedConstruct(void *,char *,struct defmodule *,
00049 char *,int *,int,struct defmodule *);
00050 LOCALE void AmbiguousReferenceErrorMessage(void *,char *,char *);
00051 LOCALE void MarkModulesAsUnvisited(void *);
00052 LOCALE void ListItemsDriver(void *,
00053 char *,struct defmodule *,
00054 char *,char *,
00055 void *(*)(void *,void *),
00056 char *(*)(void *),
00057 void (*)(void *,char *,void *),
00058 int (*)(void *,void *));
00059 LOCALE long DoForAllModules(void *,
00060 void (*)(struct defmodule *,void *),
00061 int,void *);
00062 LOCALE intBool ConstructExported(void *,char *,struct symbolHashNode *,struct symbolHashNode *);
00063
00064 #endif
00065
00066
00067