elm_image: fix break related with elm image error enum

This commit is contained in:
Ji-Youn Park 2016-06-03 17:14:37 +08:30
parent 31279d2513
commit dc7b91cb7c
1 changed files with 25 additions and 0 deletions

View File

@ -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;
/**