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

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: 
        !            32: extern HTStream * HTNoFreeStream_new (HTStream * target);
        !            33: 
        !            34: extern int HTNoFreeStream_delete (HTStream * me);
        !            35: 
        !            36: #endif /* HTNOFREE_H */
        !            37: </PRE>
        !            38: 
        !            39: <HR>
        !            40: <ADDRESS>
        !            41: @(#) $Id: HTTee.html,v 2.16 1998/05/14 02:11:13 frystyk Exp $
        !            42: </ADDRESS>
        !            43: </BODY>
        !            44: </HTML>

Webmaster