blob: 58648fe4466cfaff00ddd7d3859ae73413f67818 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef JPEGDATASOURCE_H_INCLUDED
#define JPEGDATASOURCE_H_INCLUDED
#include "pm_c_util.h"
struct sourceManager *
dsCreateSource(const char * const fileName);
void
dsDestroySource(struct sourceManager * const srcP);
bool
dsDataLeft(struct sourceManager * const srcP);
bool
dsPrematureEof(struct sourceManager * const srcP);
struct jpeg_source_mgr *
dsJpegSourceMgr(struct sourceManager * const srcP);
#endif
|