From dc7b91cb7cf918f57a137a94652be5a0257c65d6 Mon Sep 17 00:00:00 2001 From: Ji-Youn Park Date: Fri, 3 Jun 2016 17:14:37 +0830 Subject: [PATCH] elm_image: fix break related with elm image error enum --- src/lib/elementary/elm_image_legacy.h | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/src/lib/elementary/elm_image_legacy.h b/src/lib/elementary/elm_image_legacy.h index ed9f6f2..2cb4b71 100644 --- a/src/lib/elementary/elm_image_legacy.h +++ b/src/lib/elementary/elm_image_legacy.h @@ -10,6 +10,31 @@ */ EAPI Evas_Object *elm_image_add(Evas_Object *parent); +/** Structure associated with smart callback 'download,progress'. + * + * @since 1.8 + * + * @ingroup Elm_Image + */ +typedef struct _Elm_Image_Progress +{ + double now; + double total; +} Elm_Image_Progress; + +/** Structure associated with smart callback 'download,progress'. + * + * @since 1.8 + * + * @ingroup Elm_Image + */ +typedef struct _Elm_Image_Error +{ + int status; + Eina_Bool open_error; +} Elm_Image_Error; + + typedef Evas_Object Elm_Image; /** -- 2.7.4