diff options
Diffstat (limited to 'art_svp_intersect.h')
-rw-r--r-- | art_svp_intersect.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/art_svp_intersect.h b/art_svp_intersect.h index c729a29..3c2df2d 100644 --- a/art_svp_intersect.h +++ b/art_svp_intersect.h @@ -23,8 +23,10 @@ /* The funky new SVP intersector. */ #ifdef LIBART_COMPILATION +#include "art_config.h" #include "art_svp.h" #else +#include <libart_lgpl/art_config.h> #include <libart_lgpl/art_svp.h> #endif @@ -51,16 +53,16 @@ struct _ArtSvpWriter { void (*close_segment) (ArtSvpWriter *self, int seg_id); }; -ArtSvpWriter * +LIBART_EXPORT ArtSvpWriter * art_svp_writer_rewind_new (ArtWindRule rule); -ArtSVP * +LIBART_EXPORT ArtSVP * art_svp_writer_rewind_reap (ArtSvpWriter *self); -int +LIBART_EXPORT int art_svp_seg_compare (const void *s1, const void *s2); -void +LIBART_EXPORT void art_svp_intersector (const ArtSVP *in, ArtSvpWriter *out); #ifdef __cplusplus |