diff options
Diffstat (limited to 'art_rect_svp.h')
-rw-r--r-- | art_rect_svp.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/art_rect_svp.h b/art_rect_svp.h index 622d88f..13f7954 100644 --- a/art_rect_svp.h +++ b/art_rect_svp.h @@ -23,8 +23,10 @@ /* Find the bounding box of a sorted vector path. */ #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 @@ -32,12 +34,12 @@ extern "C" { #endif /* __cplusplus */ -void +LIBART_EXPORT void art_drect_svp (ArtDRect *bbox, const ArtSVP *svp); /* Compute the bounding box of the svp and union it in to the existing bounding box. */ -void +LIBART_EXPORT void art_drect_svp_union (ArtDRect *bbox, const ArtSVP *svp); #ifdef __cplusplus |