Tizen 2.1 base
[platform/core/system/sync-agent.git] / test / dummy_project / src / plugins / dummy / di-dummy / src / plugin_interface_devinfo.c
1 /*
2  * sync-agent
3  * Copyright (c) 2012 Samsung Electronics Co., Ltd.
4  *
5  * Licensed under the Apache License, Version 2.0 (the License);
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *     http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17
18 #include <stdio.h>
19 #include <stdlib.h>
20
21 #include "utility/sync_util.h"
22 #include "plugin/device_info_interface.h"
23
24 #ifndef EXPORT_API
25 #define EXPORT_API __attribute__ ((visibility("default")))
26 #endif
27
28 #ifndef OMADS_AGENT_LOG
29 #undef LOG_TAG
30 #define LOG_TAG "PLUGIN_DI_DUMMY"
31 #endif
32
33 EXPORT_API int sync_agent_plugin_load_devinfo()
34 {
35         _EXTERN_FUNC_ENTER;
36
37         int res = 1;
38
39         _EXTERN_FUNC_EXIT;
40         return res;
41 }
42
43 EXPORT_API int sync_agent_plugin_get_devinfo(char *info_name, char **value)
44 {
45         _EXTERN_FUNC_ENTER;
46
47         retvm_if(info_name == NULL, 0, "info_name is NULL. FAIL !!!");
48
49         int res = 1;
50
51         *value = strdup("test_value");
52
53         _EXTERN_FUNC_EXIT;
54
55         return res;
56 }