summaryrefslogtreecommitdiff
path: root/include/data/folderdata.h
diff options
context:
space:
mode:
authorJehun Lim <jehun.lim@samsung.com>2015-09-21 14:47:34 +0900
committerJehun Lim <jehun.lim@samsung.com>2015-09-21 14:54:28 +0900
commitd9a9d0449f3e5693a9fc2ba15f81e47d2ecd4813 (patch)
treea1574920f891fdc3cb8b70ccb96c73a7aa351f15 /include/data/folderdata.h
parent5a9d0b45c1ea3679f0c37b55fdba36cf8f041d54 (diff)
downloadair_mediahub-d9a9d0449f3e5693a9fc2ba15f81e47d2ecd4813.tar.gz
air_mediahub-d9a9d0449f3e5693a9fc2ba15f81e47d2ecd4813.tar.bz2
air_mediahub-d9a9d0449f3e5693a9fc2ba15f81e47d2ecd4813.zip
Change-Id: I127e16c9f61804c264719f6014ba1ba0351a1f12 Signed-off-by: Jehun Lim <jehun.lim@samsung.com>
Diffstat (limited to 'include/data/folderdata.h')
-rw-r--r--include/data/folderdata.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/include/data/folderdata.h b/include/data/folderdata.h
new file mode 100644
index 0000000..965e630
--- /dev/null
+++ b/include/data/folderdata.h
@@ -0,0 +1,38 @@
+/*
+ * Copyright (c) 2015 Samsung Electronics Co., Ltd All Rights Reserved
+ *
+ * Licensed under the Apache License, Version 2.0 (the License);
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an AS IS BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#ifndef _AIR_MEDIAHUB_FOLDERDATA_H__
+#define _AIR_MEDIAHUB_FOLDERDATA_H__
+
+struct data_ops;
+
+enum folder_group_type {
+ E_FOLDER_NAME,
+ E_FOLDER_MAX
+};
+
+struct folder_info {
+ char *id;
+ char *name;
+ char *path;
+ char *parent_id;
+
+ int count;
+};
+
+struct data_ops *folderdata_get_ops(void);
+
+#endif /* _AIR_MEDIAHUB_FOLDERDATA_H__ */