From: Jiyoun Park Date: Wed, 13 Dec 2017 08:16:10 +0000 (+0900) Subject: Ecore_Device: fix app's build error becase difference between tizen & opensource X-Git-Tag: submit/sandbox/upgrade/efl120/20180319.053334~716 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0d14a4b739f4405a2d81f93363cca5ad610d5b43;p=platform%2Fupstream%2Fefl.git Ecore_Device: fix app's build error becase difference between tizen & opensource Ecore_Event structure is changed in opensource. it add Eo type to all Ecore event type structure. but currently, tize only code also add Ecore_Device to the end of Ecore event sturcture. so we should change c code to deal with Ecore_Device type. this is hotfix patch for build. Change-Id: Ic4b66cf5f99e116f308831bd58d744aac82a5b56 --- diff --git a/src/lib/ecore/Ecore_Common.h b/src/lib/ecore/Ecore_Common.h index 4b6c956..18f39c3 100644 --- a/src/lib/ecore/Ecore_Common.h +++ b/src/lib/ecore/Ecore_Common.h @@ -3210,7 +3210,10 @@ typedef struct _Ecore_Job Ecore_Job; /**< A job handle */ * * @{ */ - typedef struct _Ecore_Device Ecore_Device; /**< A handle for an device */ +//TIZNE_ONLY(20171214): migration build fix. +//typedef struct _Ecore_Device Ecore_Device; /**< A handle for an device */ +typedef Eo Ecore_Device; /**< A handle for an device */ +// /** * @typedef Ecore_Device_Class