about summary refs log blame commit diff stats
path: root/WWW/Library/Implementation/HTFWriter.h
blob: 089ad0fbe99d0d16612f7720527997dbcf057b3a (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                                                                                             
                     
                     




















                                                      
/*                                                                     File Writer for libwww
                                      C FILE WRITER
                                             
   It is useful to have both FWriter and Writer for environments in which fdopen() doesn't
   exist for example.
   
 */
#ifndef HTFWRITE_H
#define HTFWRITE_H

#include <HTStream.h>
#include <HTFormat.h>

#ifdef SHORT_NAMES
#define HTFWriter_new   HTFWnew
#endif

extern HTStream * HTFWriter_new PARAMS((FILE * fp));

extern HTStream * HTSaveAndExecute PARAMS((
        HTPresentation *        pres,
        HTParentAnchor *        anchor, /* Not used */
        HTStream *              sink));

extern HTStream * HTSaveLocally PARAMS((
        HTPresentation *        pres,
        HTParentAnchor *        anchor, /* Not used */
        HTStream *              sink));

#endif
/*

   end */