blob: 821e51c80db99e8d8eedb7db7abed17e95d0dd57 [file] [log] [blame]
The Android Open Source Project5738f832012-12-12 16:00:35 -08001/******************************************************************************
2 *
Jakub Pawlowski5b790fe2017-09-18 09:00:20 -07003 * Copyright 2009-2012 Broadcom Corporation
The Android Open Source Project5738f832012-12-12 16:00:35 -08004 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at:
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 *
17 ******************************************************************************/
18
19#ifndef BT_UTILS_H
20#define BT_UTILS_H
21
Sharvil Nanavati06ef2052014-11-06 18:34:06 -080022static const char BT_UTILS_MODULE[] = "bt_utils_module";
23
The Android Open Source Project5738f832012-12-12 16:00:35 -080024/*******************************************************************************
Myles Watsonee96a3c2016-11-23 14:49:54 -080025 * Type definitions
26 ******************************************************************************/
The Android Open Source Project5738f832012-12-12 16:00:35 -080027
28typedef enum {
Myles Watson911d1ae2016-11-28 16:44:40 -080029 TASK_HIGH_MEDIA = 0,
30 TASK_UIPC_READ,
31 TASK_HIGH_MAX
The Android Open Source Project5738f832012-12-12 16:00:35 -080032} tHIGH_PRIORITY_TASK;
33
34/*******************************************************************************
Myles Watsonee96a3c2016-11-23 14:49:54 -080035 * Functions
36 ******************************************************************************/
The Android Open Source Project5738f832012-12-12 16:00:35 -080037
The Android Open Source Project5738f832012-12-12 16:00:35 -080038void raise_priority_a2dp(tHIGH_PRIORITY_TASK high_task);
Jakub Pawlowski713993d2016-04-21 13:16:45 -070039
The Android Open Source Project5738f832012-12-12 16:00:35 -080040#endif /* BT_UTILS_H */