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