blob: 117184565962991ef3a2416c1e4642e8eac0ec7a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef __WEBP_H__
#define __WEBP_H__
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
#include "url.h"
#include "image.hh"
void *a_Webp_new(DilloImage *Image, DilloUrl *url, int version);
void a_Webp_callback(int Op, void *data);
const char *a_Webp_version(char *buf, int n);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* !__WEBP_H__ */
|