diff options
author | Rodrigo Arias Mallo <rodarima@gmail.com> | 2024-05-12 18:12:20 +0200 |
---|---|---|
committer | Rodrigo Arias Mallo <rodarima@gmail.com> | 2024-07-26 00:39:22 +0200 |
commit | 903548005c2141b9c67f80412a20522c163c5fb9 (patch) | |
tree | 1aa9cd962de8ad48fe5c369120608b829d2f9e60 /src/dsvg.h | |
parent | 8f67d6e0cea4629ae2e1ca6962224aae0be15092 (diff) |
Merge SVG support from mobilized Dillo fork
Uses the nanosvg library to add SVG support.
See: https://www.toomanyatoms.com/software/mobilized_dillo.html
Authored-By: dogma
Diffstat (limited to 'src/dsvg.h')
-rw-r--r-- | src/dsvg.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/dsvg.h b/src/dsvg.h new file mode 100644 index 00000000..7f902ad6 --- /dev/null +++ b/src/dsvg.h @@ -0,0 +1,19 @@ +#ifndef __SVG_H__ +#define __SVG_H__ + +#ifdef __cplusplus +extern "C" { +#endif /* __cplusplus */ + +#include "url.h" +#include "image.hh" + + +void *a_Svg_new(DilloImage *Image, DilloUrl *url, int version); +void a_Svg_callback(int Op, CacheClient_t *Client); + + +#ifdef __cplusplus +} +#endif /* __cplusplus */ +#endif /* !__SVG_H__ */ |