From 0d14a4b739f4405a2d81f93363cca5ad610d5b43 Mon Sep 17 00:00:00 2001 From: Jiyoun Park Date: Wed, 13 Dec 2017 17:16:10 +0900 Subject: [PATCH] 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 --- src/lib/ecore/Ecore_Common.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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 -- 2.7.4