summaryrefslogtreecommitdiff
path: root/include/my-account-view.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/my-account-view.h')
-rwxr-xr-xinclude/my-account-view.h73
1 files changed, 73 insertions, 0 deletions
diff --git a/include/my-account-view.h b/include/my-account-view.h
new file mode 100755
index 0000000..5ab4693
--- /dev/null
+++ b/include/my-account-view.h
@@ -0,0 +1,73 @@
+/*
+ * Copyright (c) 2000-2015 Samsung Electronics Co., Ltd All Rights Reserved
+ *
+ * PROPRIETARY/CONFIDENTIAL
+ *
+ * This software is the confidential and proprietary information of
+ * SAMSUNG ELECTRONICS ("Confidential Information").
+ * You shall not disclose such Confidential Information and shall
+ * use it only in accordance with the terms of the license agreement
+ * you entered into with SAMSUNG ELECTRONICS.
+ * SAMSUNG make no representations or warranties about the suitability
+ * of the software, either express or implied, including but not
+ * limited to the implied warranties of merchantability, fitness for
+ * a particular purpose, or non-infringement.
+ * SAMSUNG shall not be liable for any damages suffered by licensee as
+ * a result of using, modifying or distributing this software or its derivatives.
+
+ */
+
+
+#ifndef __MY_ACCOUNT_VIEW_H__
+#define __MY_ACCOUNT_VIEW_H__
+
+#include <Evas.h>
+#include <Ecore.h>
+#include <Elementary.h>
+#include <efl_extension.h>
+#include <glib.h>
+
+#ifdef __cplusplus
+extern "C"
+{
+#endif /* __cplusplus */
+
+typedef struct __capability_data {
+ char* type;
+ int state;
+} myaccount_capability_data;
+
+typedef struct {
+ int account_id;
+ char user_name[256];
+ char display_name[256];
+ char email_address[256];
+ char package_name[256];
+ char domain_name[60];
+ char icon_path[PATH_MAX];
+ char capability[128];
+ int secret;
+ int list_index;
+ int sync_status;
+ GList *capability_list;
+ char service_name[256];
+} myaccount_account_info;
+
+typedef struct {
+ char service_name[256];
+ char service_sname[256];
+ char package_name[256];
+ char icon_path[1024];
+ bool multiple_account_support;
+} myaccount_account_app_info;
+
+bool _myaccount_view_main_create(void *data);
+int _myaccount_get_accounts_total_count(void);
+
+int previous_cnt;
+
+#ifdef __cplusplus
+}
+#endif
+#endif /*__MY_ACCOUNT_VIEW_H__*/
+