Jitendra Naruka | 1b6513f | 2014-11-22 19:34:13 -0800 | [diff] [blame] | 1 | /*Copyright (C) 2014 The Android Open Source Project |
| 2 | * |
| 3 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | * you may not use this file except in compliance with the License. |
| 5 | * You may obtain a copy of the License at |
| 6 | * |
| 7 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | * |
| 9 | * Unless required by applicable law or agreed to in writing, software |
| 10 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | * See the License for the specific language governing permissions and |
| 13 | * limitations under the License. |
| 14 | * This file was modified by DTS, Inc. The portions of the |
| 15 | * code modified by DTS, Inc are copyrighted and |
| 16 | * licensed separately, as follows: |
| 17 | * |
| 18 | * (C) 2014 DTS, Inc. |
| 19 | * |
| 20 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 21 | * you may not use this file except in compliance with the License. |
| 22 | * You may obtain a copy of the License at |
| 23 | * |
| 24 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 25 | * |
| 26 | * Unless required by applicable law or agreed to in writing, software |
| 27 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 28 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 29 | * See the License for the specific language governing permissions and |
| 30 | * limitations under the License. |
| 31 | */ |
| 32 | |
| 33 | #ifndef AUDIO_UTIL_H_ |
| 34 | #define AUDIO_UTIL_H_ |
| 35 | |
| 36 | #ifndef DTS_EAGLE |
| 37 | #define create_route_node() (0) |
| 38 | #define notify_route_node(active_device, devices) (0) |
| 39 | #define remove_route_node() (0) |
| 40 | #else |
| 41 | void create_route_node(void); |
| 42 | void notify_route_node(int active_device, int devices); |
| 43 | void remove_route_node(void); |
| 44 | #endif |
| 45 | |
| 46 | #endif //AUDIO_UTIL_H_ |