diff options
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__ */ |