Vanilla.PDF  1.3.0
Cross-platform toolkit for creating and modifying PDF documents
List of all members
IOutputStreamHandle Class Reference

Output stream can write sequences of characters and represent other kinds of data. More...

Inheritance diagram for IOutputStreamHandle:
IUnknownHandle IInputOutputStreamHandle
error_type IOutputStream_CreateFromFile (string_type filename, IOutputStreamHandle **result)
 Creates a new file at filename location and opens it for writing.
 
error_type IOutputStream_GetOutputPosition (IOutputStreamHandle *handle, offset_type *result)
 Gets current offset in the output stream.
 
error_type IOutputStream_SetOutputPosition (IOutputStreamHandle *handle, offset_type value)
 Sets current offset in the output stream.
 
error_type IOutputStream_WriteString (IOutputStreamHandle *handle, string_type data)
 Appends null terminated string to current output stream instance.
 
error_type IOutputStream_WriteBuffer (IOutputStreamHandle *handle, BufferHandle *data)
 Appends buffer string to current output stream instance.
 
error_type IOutputStream_Flush (IOutputStreamHandle *handle)
 Flushes all pending data from the stream to it's destination.
 
error_type IOutputStream_Release (IOutputStreamHandle *handle)
 Decrement the internal reference counter. More...
 

Additional Inherited Members

- Public Member Functions inherited from IUnknownHandle
error_type IUnknown_AddRef (IUnknownHandle *handle)
 Increment the internal reference counter.
 

Detailed Description

Output stream can write sequences of characters and represent other kinds of data.

Examples:
extract.c, filter.c, and write_custom.c.

Friends And Related Function Documentation

◆ IOutputStream_Release()

error_type IOutputStream_Release ( IOutputStreamHandle handle)
related

Decrement the internal reference counter.

When the internal counter reaches zero the object is deleted. Releasing already disposed object causes undefined behavior.

See also
IUnknown_Release
Examples:
extract.c, and filter.c.

The documentation for this class was generated from the following file: