diff options
author | Slávek Banko <[email protected]> | 2019-04-22 20:57:31 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2019-04-23 20:48:39 +0200 |
commit | 2a50894a436559785a7e0f6f65dde13b0082572c (patch) | |
tree | 560491aa8af08f16cb61cf8815aca8b5100d9e1d /art_uta_vpath.h | |
parent | 87237501c51b48ba3b802efbd47776bb7e410c2a (diff) | |
download | libart-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_uta_vpath.h')
-rw-r--r-- | art_uta_vpath.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/art_uta_vpath.h b/art_uta_vpath.h index f8c9c0b..628c02b 100644 --- a/art_uta_vpath.h +++ b/art_uta_vpath.h @@ -23,9 +23,11 @@ /* Basic data structures and constructors for microtile arrays */ #ifdef LIBART_COMPILATION +#include "art_config.h" #include "art_uta.h" #include "art_vpath.h" #else +#include <libart_lgpl/art_config.h> #include <libart_lgpl/art_uta.h> #include <libart_lgpl/art_vpath.h> #endif @@ -34,11 +36,11 @@ extern "C" { #endif /* __cplusplus */ -ArtUta * +LIBART_EXPORT ArtUta * art_uta_from_vpath (const ArtVpath *vec); /* This is a private function: */ -void +LIBART_EXPORT void art_uta_add_line (ArtUta *uta, double x0, double y0, double x1, double y1, int *rbuf, int rbuf_rowstride); @@ -47,4 +49,3 @@ art_uta_add_line (ArtUta *uta, double x0, double y0, double x1, double y1, #endif /* __cplusplus */ #endif /* __ART_UTA_VPATH_H__ */ - |