a01ad6316c45d4e0f078f6ace6c66f7cd9ab7a89
[platform/core/connectivity/bluetooth-frwk.git] / bt-service / include / bt-request-handler.h
1 /*
2  * bluetooth-frwk
3  *
4  * Copyright (c) 2012-2013 Samsung Electronics Co., Ltd.
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 #ifndef _BT_REQUEST_HANDLER_H_
21 #define _BT_REQUEST_HANDLER_H_
22
23 #include <sys/types.h>
24 #include <dbus/dbus-glib.h>
25 #include <glib.h>
26 #include <glib-object.h>
27
28 #include "bt-internal-types.h"
29
30 #ifdef __cplusplus
31 extern "C" {
32 #endif
33
34 #define BT_SERVICE_NAME "org.projectx.bt"
35 #define BT_SERVICE_PATH "/org/projectx/bt_service"
36
37 #define BT_SERVICE_TYPE (bt_service_get_type())
38
39 typedef struct _BtService
40 {
41     GObject object;
42 } BtService;
43
44 typedef struct _BtServiceClass
45 {
46     GObjectClass object_class;
47 } BtServiceClass;
48
49 gboolean bt_service_request(
50                 BtService *service,
51                 int service_type,
52                 int service_function,
53                 int request_type,
54                 GArray* in_param1,
55                 GArray* in_param2,
56                 GArray* in_param3,
57                 GArray* in_param4,
58                 GArray* in_param5,
59                 DBusGMethodInvocation *context);
60
61 int _bt_service_register(void);
62
63 void _bt_service_unregister(void);
64
65 #ifdef __cplusplus
66 }
67 #endif /* __cplusplus */
68 #endif /*_BT_REQUEST_HANDLER_H_*/
69