summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMinkyu Kang <mk7.kang@samsung.com>2015-09-24 01:07:22 -0700
committerGerrit Code Review <gerrit@review.vlan103.tizen.org>2015-09-24 01:07:22 -0700
commit93c1d7a66b7b8776b93994396ee5907962a1b1fb (patch)
tree544d20c43eeafbd698c3f8291a8006698f4a371d /include
parentc515f91444a4451832a70ba590485a238694eff9 (diff)
parent07777eae2cda3d9fdb5feaaa7cd18c6961b218a4 (diff)
downloadair_mediahub-93c1d7a66b7b8776b93994396ee5907962a1b1fb.tar.gz
air_mediahub-93c1d7a66b7b8776b93994396ee5907962a1b1fb.tar.bz2
air_mediahub-93c1d7a66b7b8776b93994396ee5907962a1b1fb.zip
Merge "add location manager for setting location tag to images" into tizen
Diffstat (limited to 'include')
-rw-r--r--include/util/locmgr.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/include/util/locmgr.h b/include/util/locmgr.h
new file mode 100644
index 0000000..8b409e4
--- /dev/null
+++ b/include/util/locmgr.h
@@ -0,0 +1,28 @@
+/*
+ * 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_LOCMGR_H__
+#define __AIR_MEDIAHUB_LOCMGR_H__
+
+struct locmgr;
+
+struct locmgr *locmgr_create(void);
+void locmgr_destroy(struct locmgr *m);
+
+bool locmgr_set_location(struct locmgr *m, app_media *am);
+bool locmgr_set_locations(struct locmgr *m, Eina_List *list);
+
+#endif