Add 3.0 APIs and sync APIs same as 2.4
[platform/core/convergence/service-adaptor.git] / server / sal_resource.c
1 /*
2  * Service Adaptor
3  *
4  * Copyright (c) 2014 - 2015 Samsung Electronics Co., Ltd. All rights reserved.
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  */
19
20 #include <glib.h>
21
22 #include "sal_resource.h"
23 #include "service_adaptor_internal.h"
24
25 //******************************************************************************
26 //* Global variables and defines
27 //******************************************************************************
28
29 //******************************************************************************
30 //* Private interface
31 //******************************************************************************
32
33 //******************************************************************************
34 //* Private interface definition
35 //******************************************************************************
36
37 //******************************************************************************
38 //* Public interface definition
39 //******************************************************************************
40
41 resource_adaptor_listener_h sal_resource_register_listener(resource_adaptor_h resource)
42 {
43         int ret = SERVICE_ADAPTOR_ERROR_NONE;
44
45         resource_adaptor_listener_h listener =
46                         (resource_adaptor_listener_h) g_malloc0(sizeof(resource_adaptor_listener_s));
47
48         ret = resource_adaptor_register_listener(resource, listener);
49
50         if (SERVICE_ADAPTOR_ERROR_NONE != ret)
51         {
52                 SAL_FREE(listener);
53         }
54
55         return listener;
56 }