Fix tizen build issue.
[platform/upstream/iotivity.git] / resource / csdk / connectivity / src / bt_edr_adapter / tizen / caedrutils.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
23  *
24  * This file provides helper functions for EDR adapter.
25  */
26
27 #ifndef CA_EDR_UTILS_H_
28 #define CA_EDR_UTILS_H_
29
30 #include <stdbool.h>
31 #include <string.h>
32
33 #include "cacommon.h"
34 #include "oic_malloc.h"
35
36 /**
37  * Logging tag for module name.
38  */
39 #ifndef EDR_ADAPTER_TAG
40 #define EDR_ADAPTER_TAG "CA_EDR_ADAPTER"
41 #endif //EDR_ADAPTER_TAG
42
43 #ifdef __cplusplus
44 extern "C"
45 {
46 #endif
47
48 /**
49  * Checks if the specified list of service UUIDs contains OIC service UUID.
50  *
51  * @param[in]  serviceUUID   Array of service UUIDs.
52  * @param[in]  serviceCount  Size of the service UUIDs array.
53  * @param[in]  matchService  Service UUID to be checked in the given array of service UUIDs.
54  *
55  * @return  true if match service UUID found otherwise false.
56  *
57  */
58 bool CAEDRIsServiceSupported(const char **serviceUUID, int32_t serviceCount,
59                             const char *matchService);
60
61 #ifdef __cplusplus
62 } /* extern "C" */
63 #endif
64
65 #endif /* CA_EDR_UTILS_H_ */
66
67