KVOutputStream
This structure defines an output stream for the HTML conversion. The structure is defined in kvstream.h
.
typedef struct tag_OutputStream { void *pOutputStreamPrivateData; BOOL (pascal *fpCreate)(struct tag_OutputStream *,TCHAR *); UINT (pascal *fpWrite) (struct tag_OutputStream *, BYTE *, UINT); BOOL (pascal *fpSeek) (struct tag_OutputStream *, long, int); long (pascal *fpTell) (struct tag_OutputStream *); BOOL (pascal *fpClose) (struct tag_OutputStream *); } KVOutputStream;
Member Descriptions
All member functions are equivalent to their counterparts in the ANSI standard library.