This documentation is deprecated and will no longer be updated. Please use the official documentation at vanillapdf.readthedocs.io.
Vanilla.PDF  2.3.0
Cross-platform toolkit for creating and modifying PDF documents
c_io_strategy.h
Go to the documentation of this file.
1#ifndef _C_IO_STRATEGY_H
2#define _C_IO_STRATEGY_H
3
7
8#ifdef __cplusplus
9extern "C"
10{
11#endif
12
28 typedef enum {
29
34
41
48
54
55#ifdef __cplusplus
56};
57#endif
58
59#endif /* _C_IO_STRATEGY_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.
IOStrategyType
Specifies the I/O strategy used for file access.
Definition c_io_strategy.h:28
@ IOStrategy_Memory
Loads entire file into memory.
Definition c_io_strategy.h:40
@ IOStrategy_MemoryMapped
Uses memory-mapped file access.
Definition c_io_strategy.h:47
@ IOStrategy_FileStream
Uses FILE*-based streaming I/O.
Definition c_io_strategy.h:52
@ IOStrategy_Undefined
Uses the default implementation (currently fstream).
Definition c_io_strategy.h:33