1#ifndef _C_FILE_WRITER_H
2#define _C_FILE_WRITER_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 low-level file access handle.
Implements serialization of Files to destination stream.
error_type CALLING_CONVENTION FileWriter_Write(FileWriterHandle *handle, FileHandle *source, FileHandle *destination)
Save file state into new destination.
error_type CALLING_CONVENTION FileWriter_Create(FileWriterHandle **result)
Create new FileWriter instance.
error_type CALLING_CONVENTION FileWriter_Unsubscribe(FileWriterHandle *handle, FileWriterObserverHandle *observer)
Unsubscribe existing observer from the file writer events.
error_type CALLING_CONVENTION FileWriter_Release(FileWriterHandle *handle)
Decrement the internal reference counter.
error_type CALLING_CONVENTION FileWriter_FromUnknown(IUnknownHandle *handle, FileWriterHandle **result)
Convert IUnknownHandle to FileWriterHandle.
error_type CALLING_CONVENTION FileWriter_ToUnknown(FileWriterHandle *handle, IUnknownHandle **result)
Reinterpret current object as IUnknownHandle.
error_type CALLING_CONVENTION FileWriter_Subscribe(FileWriterHandle *handle, FileWriterObserverHandle *observer)
Subscribe a new observer to the file writer events.
error_type CALLING_CONVENTION FileWriter_WriteIncremental(FileWriterHandle *handle, FileHandle *source, FileHandle *destination)
Save file state into new destination and create new section for all modifications done by user.
Allows hooking on FileWriterHandle events.
Base class for reference counting.
uint32_t error_type
This is return value type of all API functions.
Definition c_types.h:25