From: Tom Robinson Date: Mon, 14 Nov 2016 10:52:06 +0000 (+0000) Subject: Added correct import defines to SyncImageLoader X-Git-Tag: dali_1.2.15~13 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;ds=sidebyside;h=dd6db6bdc7bc9977b8dca60269090f55696153dd;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git Added correct import defines to SyncImageLoader Change-Id: I298895d6b571269f3bae7015227fc6a96cc01c0e --- diff --git a/dali-toolkit/public-api/image-loader/sync-image-loader.h b/dali-toolkit/public-api/image-loader/sync-image-loader.h index 3450ba9..1586218 100644 --- a/dali-toolkit/public-api/image-loader/sync-image-loader.h +++ b/dali-toolkit/public-api/image-loader/sync-image-loader.h @@ -60,7 +60,7 @@ namespace SyncImageLoader * @param[in] url The URL of the image file to load. * @return A PixelData object containing the image, or an invalid object on failure. */ -PixelData Load( const std::string& url ); +DALI_IMPORT_API PixelData Load( const std::string& url ); /** * @brief Load an image synchronously by specifying the target dimensions. @@ -75,7 +75,7 @@ PixelData Load( const std::string& url ); * @param[in] dimensions The width and height to fit the loaded image to. * @return A PixelData object containing the image, or an invalid object on failure. */ -PixelData Load( const std::string& url, ImageDimensions dimensions ); +DALI_IMPORT_API PixelData Load( const std::string& url, ImageDimensions dimensions ); /** * @brief Load an image synchronously by specifying the target dimensions and options. @@ -88,7 +88,7 @@ PixelData Load( const std::string& url, ImageDimensions dimensions ); * @param[in] orientationCorrection Reorient the image to respect any orientation metadata in its header. * @return A PixelData object containing the image, or an invalid object on failure. */ -PixelData Load( const std::string& url, +DALI_IMPORT_API PixelData Load( const std::string& url, ImageDimensions dimensions, FittingMode::Type fittingMode, SamplingMode::Type samplingMode,