7a2293abca6b390b201f0ce14334c09cd3553744
[platform/upstream/iotivity.git] / resource / csdk / connectivity / src / bt_edr_adapter / tizen / cabtutils.h
1 /******************************************************************
2  *
3  * Copyright 2014 Samsung Electronics All Rights Reserved.
4  *
5  *
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  ******************************************************************/
20
21 /**
22  * @file  cabtutils.h
23  * @brief  This file provides helper functions for EDR adapter.
24  */
25
26 #ifndef __CA_BT_UTILS_H_
27 #define __CA_BT_UTILS_H_
28
29 #include <stdbool.h>
30 #include <string.h>
31
32 #include "cacommon.h"
33 #include "oic_malloc.h"
34
35 #ifndef BLUETOOTH_ADAPTER_TAG
36 #define BLUETOOTH_ADAPTER_TAG "CA_BLUETOOTH"
37 #endif //BLUETOOTH_ADAPTER_TAG
38
39 #ifndef OIC_BT_SERVICE_ID
40 #define OIC_BT_SERVICE_ID "12341234-1C25-481F-9DFB-59193D238280"
41 #endif //OIC_BT_SERVICE_ID
42
43 #ifdef __cplusplus
44 extern "C"
45 {
46 #endif
47
48 /**
49  * @fn  CABTIsServiceSupported
50  * @brief  Checks if the specified list of service UUIDs contains OIC service UUID.
51  *
52  * @param[in]  serviceUUID  Array of service UUIDs
53  * @param[in]  serviceCount  Size of the service UUIDs array.
54  * @param[in]  matchService  Service UUID to be checked in the given array of service UUIDs
55  *
56  * @return  true if match service UUID found otherwise false.
57  *
58  */
59 bool CABTIsServiceSupported(const char **serviceUUID, const int32_t serviceCount,
60                             const char *matchService);
61
62 #ifdef __cplusplus
63 } /* extern "C" */
64 #endif
65
66 #endif //__CA_BT_UTILS_H_
67