1 /*                   /Net/dxcern/userd/timbl/hypertext/WWW/Library/Implementation/HTInit.html
2                                   INITIALISATION MODULE
3 
4    This module registers all the plug & play software modules which will be
5    used in the program.  This is for a browser.
6 
7    To override this, just copy it and link in your version before you link with
8    the library.
9 
10    Implemented by HTInit.c by default.
11 
12  */
13 
14 #ifndef HTINIT_H
15 #define HTINIT_H 1
16 
17 #ifndef HTUTILS_H
18 #include <HTUtils.h>
19 #endif
20 
21 #ifdef __cplusplus
22 extern "C" {
23 #endif
24     extern void HTFormatInit(void);
25     extern void HTPreparsedFormatInit(void);
26     extern void HTFileInit(void);
27     extern int LYTestMailcapCommand(const char *testcommand, const char *params);
28     extern BOOL LYMailcapUsesPctS(const char *controlstring);
29     extern char *LYMakeMailcapCommand(const char *command, const char *params, const char *filename);
30 
31 #ifdef __cplusplus
32 }
33 #endif
34 #endif				/* HTINIT_H */
35