From d627e38683473de0caff36121e2477a23a54538d Mon Sep 17 00:00:00 2001 From: Michal Pawluk Date: Wed, 2 Sep 2015 11:24:08 +0200 Subject: [PATCH] [SAMPLE APP][RESOURCE-MANAGER] Type definitions section added Change-Id: Ia477ba35482c30df30934fb84cbf0b43ffdf81b7 Signed-off-by: Michal Pawluk --- .../html/mobile_n/resource_manager_sd_mn.htm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/org.tizen.sampledescriptions/html/mobile_n/resource_manager_sd_mn.htm b/org.tizen.sampledescriptions/html/mobile_n/resource_manager_sd_mn.htm index abaa1dd..144b38a 100644 --- a/org.tizen.sampledescriptions/html/mobile_n/resource_manager_sd_mn.htm +++ b/org.tizen.sampledescriptions/html/mobile_n/resource_manager_sd_mn.htm @@ -102,6 +102,26 @@

Type definitions

+
+/* The general structure for application's data storage. */
+struct __appdata {
+   viewdata_s view;
+};
+
+ +
+/* All the Evas_Object objects represent UI widgets. */
+struct __viewdata {
+   Evas_Object *win;
+   Evas_Object *conform;
+   Evas_Object *layout_main_panel;
+   Evas_Object *image_dpi;
+   Evas_Object *image_language;
+};
+
+typedef struct __viewdata viewdata_s;
+
+

Application initialization

Application termination

-- 2.7.4