diff options
Diffstat (limited to 'art_svp.h')
-rw-r--r-- | art_svp.h | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -23,9 +23,11 @@ /* Basic data structures and constructors for sorted vector paths */ #ifdef LIBART_COMPILATION +#include "art_config.h" #include "art_rect.h" #include "art_point.h" #else +#include <libart_lgpl/art_config.h> #include <libart_lgpl/art_rect.h> #include <libart_lgpl/art_point.h> #endif @@ -49,16 +51,16 @@ struct _ArtSVP { ArtSVPSeg segs[1]; }; -int +LIBART_EXPORT int art_svp_add_segment (ArtSVP **p_vp, int *pn_segs_max, int **pn_points_max, int n_points, int dir, ArtPoint *points, ArtDRect *bbox); -void +LIBART_EXPORT void art_svp_free (ArtSVP *svp); -int +LIBART_EXPORT int art_svp_seg_compare (const void *s1, const void *s2); #ifdef __cplusplus |