/* ** (c) COPYRIGHT MIT 1995. ** Please first read the full copyright statement in the file COPYRIGH. */This module resisters all the plug & play software modules which will be used in the program on client side (The server has it's own initialization module). None of the functions in this module are called from the Library. They are uniquely a help for the application programmer in order to set up the functionality of the Library.
The initialization consists of definiting the following bindings:
THE APPLICATION MAY USE
THESE FUNCTIONS BUT IT IS NOT REQUIRED
PLEASE SEE THE HTBInit MODULE FOR STANDARD BINDINGS BETWEEN
FILE EXTENSIONS AND MEDIA TYPES.
#ifndef HTINIT_H #define HTINIT_H #include "WWWLib.h"
#include "HTML.h" /* Uses HTML/HText interface */ #include "HTPlain.h" /* Uses HTML/HText interface */ #include "HTTeXGen.h" #include "HTMLGen.h" #include "HTMIME.h" #include "HTBound.h" #include "HTGuess.h" #include "HTRules.h" #include "HTWSRC.h" #include "HTFWrite.h" #include "HTNewsLs.h" extern void HTConverterInit (HTList * conversions);
extern void HTPresenterInit (HTList * conversions);
extern void HTFormatInit (HTList * conversions);
#include "HTIcons.h" #include "WWWHTTP.h" #include "HTFile.h" #include "HTFTP.h" #include "HTGopher.h" #include "HTTelnet.h" #include "HTNews.h" #ifdef HT_DIRECT_WAIS #include "HTWAIS.h" #endif extern void HTAccessInit (void);
extern void HTFileInit (void);
#include "HTHome.h" extern void HTNetInit (void);
#include "HTDialog.h" extern void HTAlertInit (void);
#endifEnd of HTInit Module.