about summary refs log tree commit diff
path: root/converter/other/jpegdatasource.h
blob: 07f1738932cbecc00dc48efbf1634e32cef8c995 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#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);

struct jpeg_source_mgr *
dsJpegSourceMgr(struct sourceManager * const srcP);

#endif