summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorInkyun Kil <inkyun.kil@samsung.com>2017-03-10 13:42:39 +0900
committerInkyun Kil <inkyun.kil@samsung.com>2017-03-10 13:42:39 +0900
commitf8a873183bbffc2210924316ee388eed855215ff (patch)
treea4b8823f3ed5b7703f74fe59bfe79090fb2d10b6 /src
parent97b09d8cb19d22fa9a929cd131184b6350ddc516 (diff)
downloadapplication-f8a873183bbffc2210924316ee388eed855215ff.tar.gz
application-f8a873183bbffc2210924316ee388eed855215ff.tar.bz2
application-f8a873183bbffc2210924316ee388eed855215ff.zip
Separate app_resource_manager API from capi-appfw-application
app_resource_manager API doesn't have to depend on UI. Therefore, it should be separated from capi-appfw-application Change-Id: Ibb2e4c4aa54bcd57bc949723b667319a9f4d6958 Signed-off-by: Inkyun Kil <inkyun.kil@samsung.com>
Diffstat (limited to 'src')
-rw-r--r--src/CMakeLists.txt1
-rw-r--r--src/app_resource_manager.c34
2 files changed, 0 insertions, 35 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 5589fd5..426b997 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -35,7 +35,6 @@ ADD_LIBRARY(${fw_name} SHARED
app_main.c
app_main_legacy.c
app_resource.c
- app_resource_manager.c
i18n.c
)
diff --git a/src/app_resource_manager.c b/src/app_resource_manager.c
deleted file mode 100644
index f7f5ba0..0000000
--- a/src/app_resource_manager.c
+++ /dev/null
@@ -1,34 +0,0 @@
-/*
- * Copyright (c) 2015 - 2016 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.
- */
-
-#include <aul_rsc_mgr.h>
-#include "app_resource_manager.h"
-
-int app_resource_manager_init()
-{
- return aul_resource_manager_init();
-}
-
-int app_resource_manager_get(app_resource_e type, const char *id, char **path)
-{
- return aul_resource_manager_get((aul_resource_e)type, id, path);
-}
-
-int app_resource_manager_release()
-{
- return aul_resource_manager_release();
-}
-