blob: a9ee8820d2628f2b446cb0fdfb4b6ef98fa748f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef __PNG_H__
#define __PNG_H__
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
#include "url.h"
#include "image.hh"
void *a_Png_new(DilloImage *Image, DilloUrl *url, int version);
void a_Png_callback(int Op, CacheClient_t *Client);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* !__PNG_H__ */
|