diff options
Diffstat (limited to 'art_rgb_affine_private.h')
-rw-r--r-- | art_rgb_affine_private.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/art_rgb_affine_private.h b/art_rgb_affine_private.h index edaf0e3..f206ced 100644 --- a/art_rgb_affine_private.h +++ b/art_rgb_affine_private.h @@ -20,6 +20,12 @@ #ifndef __ART_RGB_AFFINE_PRIVATE_H__ #define __ART_RGB_AFFINE_PRIVATE_H__ +#ifdef LIBART_COMPILATION +#include "art_config.h" +#else +#include <libart_lgpl/art_config.h> +#endif + /* This module handles compositing of affine-transformed rgb images over rgb pixel buffers. */ @@ -27,7 +33,7 @@ extern "C" { #endif -void +LIBART_EXPORT void art_rgb_affine_run (int *p_x0, int *p_x1, int y, int src_width, int src_height, const double affine[6]); |