diff options
Diffstat (limited to 'svg.h')
-rw-r--r-- | svg.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1,6 +1,9 @@ #pragma once #include <stdio.h> +#include <stdbool.h> #include <pixman.h> -pixman_image_t *svg_load(FILE *fp, const char *path); +bool svg_load(FILE *fp, const char *path); +pixman_image_t *svg_render(const int width, const int height); +void svg_free(); |