Annotation of libwww/Library/src/HTMulti.html, revision 2.10

2.1       luotonen    1: <HTML>
                      2: <HEAD>
                      3: <TITLE>Multiformat handling in libwww</TITLE>
                      4: </HEAD>
                      5: <BODY>
2.4       frystyk     6: 
2.1       luotonen    7: <H1>Multiformat Handling</H1>
2.4       frystyk     8: 
                      9: <PRE>
                     10: /*
2.8       frystyk    11: **     (c) COPYRIGHT MIT 1995.
2.4       frystyk    12: **     Please first read the full copyright statement in the file COPYRIGH.
                     13: */
                     14: </PRE>
                     15: 
                     16: This module is implemented by <A HREF="HTMulti.c">HTMulti.c</A>, and it is
                     17: a part of the <A
2.10    ! frystyk    18: HREF="http://www.w3.org/pub/WWW/Library/">
2.9       frystyk    19: W3C Reference Library</A>.
2.1       luotonen   20: 
                     21: <PRE>
                     22: #ifndef HTMULTI_H
                     23: #define HTMULTI_H
                     24: 
2.6       frystyk    25: #include "HTAccess.h"
2.1       luotonen   26: 
2.2       luotonen   27: /*
                     28: **     Set default file name for welcome page on each directory.
                     29: */
2.3       frystyk    30: extern void HTAddWelcome PARAMS((char * welcome_name));
2.2       luotonen   31: 
                     32: /*
                     33: **     Perform multiformat handling
                     34: */
2.3       frystyk    35: extern char * HTMulti PARAMS((HTRequest *      req,
2.1       luotonen   36:                              char *            path,
                     37:                              struct stat *     stat_info));
                     38: 
                     39: #endif /* HTMULTI_H */
                     40: 
                     41: </PRE>
                     42: End of HTMulti.
                     43: </BODY>
                     44: </HTML>

Webmaster