summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJi-Youn Park <jy0703.park@samsung.com>2016-06-03 17:14:37 +0830
committerJi-Youn Park <jy0703.park@samsung.com>2016-06-03 17:14:37 +0830
commitdc7b91cb7cf918f57a137a94652be5a0257c65d6 (patch)
tree4249b44db2507f21d4b043779220fd499e2aa5f2
parent31279d2513f02588854c3720aa811be0ea83c0e4 (diff)
downloadefl-dc7b91cb7cf918f57a137a94652be5a0257c65d6.tar.gz
elm_image: fix break related with elm image error enum
-rw-r--r--src/lib/elementary/elm_image_legacy.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/lib/elementary/elm_image_legacy.h b/src/lib/elementary/elm_image_legacy.h
index ed9f6f2453..2cb4b71272 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;
/**