1#ifndef _C_OUTPUT_STREAM_INTERFACE_H
2#define _C_OUTPUT_STREAM_INTERFACE_H
This file contains macro declarations for importing and exporting symbols from library boundaries.
This file contains all type forward declarations returned by the library API.
This file contains types and constants used as parameters or return values.
Represents memory stored data.
Base class for reference counting.
Output stream can write sequences of characters and represent other kinds of data.
error_type CALLING_CONVENTION OutputStream_ToUnknown(OutputStreamHandle *handle, IUnknownHandle **result)
Reinterpret current object as IUnknownHandle.
error_type CALLING_CONVENTION OutputStream_Release(OutputStreamHandle *handle)
Decrement the internal reference counter.
error_type CALLING_CONVENTION OutputStream_SetOutputPosition(OutputStreamHandle *handle, offset_type value)
Sets current offset in the output stream.
error_type CALLING_CONVENTION OutputStream_Flush(OutputStreamHandle *handle)
Flushes all pending data from the stream to it's destination.
error_type CALLING_CONVENTION OutputStream_GetOutputPosition(OutputStreamHandle *handle, offset_type *result)
Gets current offset in the output stream.
error_type CALLING_CONVENTION OutputStream_WriteString(OutputStreamHandle *handle, string_type data)
Appends null terminated string data to current output stream instance.
error_type CALLING_CONVENTION OutputStream_FromUnknown(IUnknownHandle *handle, OutputStreamHandle **result)
Convert IUnknownHandle to OutputStreamHandle.
error_type CALLING_CONVENTION OutputStream_WriteBuffer(OutputStreamHandle *handle, BufferHandle *data)
Appends buffer data to current output stream instance.
error_type CALLING_CONVENTION OutputStream_CreateFromFile(string_type filename, OutputStreamHandle **result)
Creates a new file at filename location and opens it for writing.
uint32_t error_type
This is return value type of all API functions.
Definition c_types.h:25
int64_t offset_type
Offset type compatible with standard IO.
Definition c_types.h:56
const char * string_type
C-Style string.
Definition c_types.h:82