Annotation of libwww/Library/src/HTNoFree.html, revision 2.2

2.1       frystyk     1: <HTML>
                      2: <HEAD>
                      3: <TITLE>W3C Sample Code Library libwww No Free Stream</TITLE>
                      4: <!-- Changed by: Henrik Frystyk Nielsen, 31-May-1996 -->
                      5: </HEAD>
                      6: <BODY>
                      7: 
                      8: <H1>No Free Stream</H1>
                      9: 
                     10: <PRE>
                     11: /*
                     12: **     (c) COPYRIGHT MIT 1995.
                     13: **     Please first read the full copyright statement in the file COPYRIGH.
                     14: */
                     15: </PRE>
                     16: 
                     17: This stream is a throughline for all methods except FREE and
                     18: ABORT. This means that it can be use to put ahead of streams that you
                     19: don't want to be freed or aborted until you are redy to do it
                     20: yourself.
                     21: <P>
                     22: This module is implemented by <A HREF="HTnoFree.c">HTNoFree.c</A>, and
                     23: it is a part of the <A HREF="http://www.w3.org/Library/"> W3C Sample
                     24: Code Library</A>.
                     25: 
                     26: <PRE>
                     27: #ifndef _HTNOFREE_H
                     28: #define _HTNOFREE_H
                     29: 
                     30: #include "<A HREF="HTStream.html">HTStream.h</A>"
                     31: 
2.2     ! vbancrof   32: #ifdef __cplusplus
        !            33: extern "C" { 
        !            34: #endif 
        !            35: 
2.1       frystyk    36: extern HTStream * HTNoFreeStream_new (HTStream * target);
                     37: 
                     38: extern int HTNoFreeStream_delete (HTStream * me);
                     39: 
2.2     ! vbancrof   40: #ifdef __cplusplus
        !            41: }
        !            42: #endif
        !            43: 
2.1       frystyk    44: #endif /* HTNOFREE_H */
                     45: </PRE>
                     46: 
                     47: <HR>
                     48: <ADDRESS>
2.2     ! vbancrof   49: @(#) $Id: HTNoFree.html,v 2.1 1999/02/01 18:41:11 frystyk Exp $
2.1       frystyk    50: </ADDRESS>
                     51: </BODY>
                     52: </HTML>

Webmaster