Fix the coding style errors (bt-service)
[platform/core/connectivity/bluetooth-frwk.git] / bt-service / include / bt-service-rfcomm-client.h
1 /*
2  * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *              http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17
18 #ifndef _BT_SERVICE_RFCOMM_CLIENT_H_
19 #define _BT_SERVICE_RFCOMM_CLIENT_H_
20
21 #include <glib.h>
22 #include <sys/types.h>
23 #include "bluetooth-api.h"
24
25 #ifdef __cplusplus
26 extern "C" {
27 #endif
28
29 int _bt_rfcomm_connect_using_uuid(int request_id,
30                         bluetooth_device_address_t *device_address,
31                         char *remote_uuid);
32
33 int _bt_rfcomm_connect_using_channel(int request_id,
34                         bluetooth_device_address_t *device_address,
35                         char *channel);
36
37 int _bt_rfcomm_disconnect(int socket_fd);
38
39 int _bt_rfcomm_write(int socket_fd, char *buf, int length);
40
41 int _bt_rfcomm_cancel_connect(void);
42
43 int _bt_rfcomm_is_device_connected(bluetooth_device_address_t *device_address,
44                                         gboolean *connected);
45
46 int _bt_rfcomm_is_connected(gboolean *connected);
47
48 int _bt_rfcomm_client_disconnect_all(void);
49
50 #ifdef __cplusplus
51 }
52 #endif /* __cplusplus */
53 #endif /*_BT_SERVICE_RFCOMM_CLIENT_H_*/
54