summaryrefslogtreecommitdiffstats
path: root/art_svp_intersect.h
diff options
context:
space:
mode:
authorSlávek Banko <[email protected]>2019-04-22 20:57:31 +0200
committerSlávek Banko <[email protected]>2019-04-23 20:48:39 +0200
commit2a50894a436559785a7e0f6f65dde13b0082572c (patch)
tree560491aa8af08f16cb61cf8815aca8b5100d9e1d /art_svp_intersect.h
parent87237501c51b48ba3b802efbd47776bb7e410c2a (diff)
downloadlibart-lgpl-2a50894a436559785a7e0f6f65dde13b0082572c.tar.gz
libart-lgpl-2a50894a436559785a7e0f6f65dde13b0082572c.zip
Add support for GCC hidden visibility.
Signed-off-by: Slávek Banko <[email protected]>
Diffstat (limited to 'art_svp_intersect.h')
-rw-r--r--art_svp_intersect.h10
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