blob: 089ad0fbe99d0d16612f7720527997dbcf057b3a (
plain) (
tree)
|
|
/* 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 */
|