summaryrefslogtreecommitdiffstats
path: root/art_svp.h
diff options
context:
space:
mode:
Diffstat (limited to 'art_svp.h')
-rw-r--r--art_svp.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/art_svp.h b/art_svp.h
index e7eaba4..d27ae1a 100644
--- a/art_svp.h
+++ b/art_svp.h
@@ -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