diff options
Diffstat (limited to 'gnu/usr.bin/lynx/WWW/Library/Implementation/HTInit.h')
| -rw-r--r-- | gnu/usr.bin/lynx/WWW/Library/Implementation/HTInit.h | 27 |
1 files changed, 18 insertions, 9 deletions
diff --git a/gnu/usr.bin/lynx/WWW/Library/Implementation/HTInit.h b/gnu/usr.bin/lynx/WWW/Library/Implementation/HTInit.h index cedbb25c727..4fc70003d98 100644 --- a/gnu/usr.bin/lynx/WWW/Library/Implementation/HTInit.h +++ b/gnu/usr.bin/lynx/WWW/Library/Implementation/HTInit.h @@ -1,11 +1,11 @@ /* /Net/dxcern/userd/timbl/hypertext/WWW/Library/Implementation/HTInit.html INITIALISATION MODULE - This module resisters all the plug & play software modules which will be used in the - program. This is for a browser. + This module registers all the plug & play software modules which will be + used in the program. This is for a browser. - To override this, just copy it and link in your version befoe you link with the - library. + To override this, just copy it and link in your version before you link with + the library. Implemented by HTInit.c by default. @@ -17,9 +17,18 @@ #ifndef HTUTILS_H #include <HTUtils.h> #endif - -extern void HTFormatInit NOPARAMS; -extern void HTPreparsedFormatInit NOPARAMS; -extern void HTFileInit NOPARAMS; -#endif /* HTINIT_H */ +#ifdef __cplusplus +extern "C" { +#endif + extern void HTFormatInit(void); + extern void HTPreparsedFormatInit(void); + extern void HTFileInit(void); + extern int LYTestMailcapCommand(const char *testcommand, const char *params); + extern BOOL LYMailcapUsesPctS(const char *controlstring); + extern char *LYMakeMailcapCommand(const char *command, const char *params, const char *filename); + +#ifdef __cplusplus +} +#endif +#endif /* HTINIT_H */ |
