diff options
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__ */ - |