Diff for /libwww/Library/src/HTInit.html between versions 2.26 and 2.27

version 2.26, 1995/11/16 18:23:20 version 2.27, 1995/11/20 00:14:25
Line 1 Line 1
 <HTML>  <HTML>
 <HEAD>  <HEAD>
 <TITLE>Initialization Routines</TITLE>  <TITLE>Initialization Routines</TITLE>
 <!-- Changed by: Henrik Frystyk Nielsen, 15-Nov-1995 -->  <!-- Changed by: Henrik Frystyk Nielsen, 19-Nov-1995 -->
 </HEAD>  </HEAD>
 <BODY>  <BODY>
 <H1>Initialization Module</H1>  <H1>Initialization Module</H1>
Line 19  initialization module). None of the func Line 19  initialization module). None of the func
 called from the Library. They are uniquely a help for the application  called from the Library. They are uniquely a help for the application
 programmer in order to set up the functionality of the Library. <P>  programmer in order to set up the functionality of the Library. <P>
   
 The initialization consists of definiting four bindings:  The initialization consists of definiting the following bindings:
   
 <UL>  <UL>
 <LI>Between a source media type and a dest media type (conversion)  <LI>Between a source media type and a dest media type (conversion)
Line 30  The initialization consists of definitin Line 30  The initialization consists of definitin
   
 This module is implemented by <A HREF="HTInit.c">HTInit.c</A>, and it  This module is implemented by <A HREF="HTInit.c">HTInit.c</A>, and it
 is a part of the <A HREF="http://www.w3.org/pub/WWW/Library/"> W3C  is a part of the <A HREF="http://www.w3.org/pub/WWW/Library/"> W3C
 Reference Library</A>.  Reference Library</A>. <P>
   
   <IMG SRC="../../Icons/32x32/warning.gif"> <B>THE APPLICATION MAY USE
   THESE FUNCTIONS BUT IT IS NOT REQUIRED</B>
   
 <PRE>  <PRE>
 #ifndef HTINIT_H  #ifndef HTINIT_H
 #define HTINIT_H  #define HTINIT_H
 #include "HTList.h"  #include "WWWLib.h"
 </PRE>  </PRE>
   
 <H2>Media Type Conversions</H2>  <H2>Media Type Conversions</H2>
Line 110  corresponding media types. Line 113  corresponding media types.
   
 <PRE>  <PRE>
 extern void HTFileInit (void);  extern void HTFileInit (void);
   </PRE>
   
   <H2>Register Callbacks For the NET manager</H2>
   
   We register two often used callback functions: a BEFORE and a AFTER
   callback Not done automaticly - may be done by application!
   
   <PRE>
   #include "HTHome.h"
   
   extern void HTNetInit (void);
   </PRE>
   
   <H2>Register Callbacks for the ALERT Manager</H2>
   
   We register a set of alert messages Not done automaticly - may be done
   by application!
   
   <PRE>
   #include "HTDialog.h"
   
   extern void HTAlertInit (void);
   </PRE>
   
   <PRE>
 #endif  #endif
 </PRE>  </PRE>
   

Removed from v.2.26  
changed lines
  Added in v.2.27


Webmaster