mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 11:36:00 +00:00
Rename files so that, if they are in a X.0 folder, their name does not contain that version number. That allows for easier copy paste when creating a new version. Conversion.h was included from the all-versions instead of the X.0 headers. This in incoherent with the other headers. Add VersionMacro.h that will be used in the follow up patch. Also remove shim from VNDK as only stable ABI&API libraries should be part of it. Test: Compile Bug: 118203066 Change-Id: I9cd77b3df5ccede5ae51c3cc94fab5939c51d9ef Signed-off-by: Kevin Rocard <krocard@google.com>
24 lines
859 B
C++
24 lines
859 B
C++
/*
|
|
* Copyright (C) 2017 The Android Open Source Project
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#include "core/2.0/default/ParametersUtil.h"
|
|
#include "core/2.0/default/Conversions.h"
|
|
#include "core/2.0/default/Util.h"
|
|
|
|
#define AUDIO_HAL_VERSION V2_0
|
|
#include <core/all-versions/default/ParametersUtil.impl.h>
|
|
#undef AUDIO_HAL_VERSION
|