blob: bd210f24dc92edc2eb8443e41dbf967721c8aab8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/*
* Streams and dynamic objects
*/
#ifdef _FITZ_STREAM_H_
#error "fitz-stream.h must only be included once"
#endif
#define _FITZ_STREAM_H_
#ifndef _FITZ_BASE_H_
#error "fitz-base.h must be included before fitz-stream.h"
#endif
#include "fitz/stm_crypt.h"
#include "fitz/stm_object.h"
#include "fitz/stm_buffer.h"
#include "fitz/stm_filter.h"
#include "fitz/stm_stream.h"
|