From b9e801cb940b45cfd9a4cf95bf5af68b084156b4 Mon Sep 17 00:00:00 2001 From: Rodrigo Arias Mallo Date: Sun, 24 Nov 2024 18:15:23 +0100 Subject: Add WebP image support See: https://www.toomanyatoms.com/software/mobilized_dillo.html Authored-By: dogma --- src/dwebp.h | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 src/dwebp.h (limited to 'src/dwebp.h') diff --git a/src/dwebp.h b/src/dwebp.h new file mode 100644 index 00000000..930380b0 --- /dev/null +++ b/src/dwebp.h @@ -0,0 +1,19 @@ +#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); + + +#ifdef __cplusplus +} +#endif /* __cplusplus */ +#endif /* !__WEBP_H__ */ -- cgit v1.2.3