interfaces: fxtunnel: Add fxtunnel 1.0 interface

Change-Id: I8bb9afc727213c7b9e74497d44ffb2bf95bd5a5f
Signed-off-by: bengris32 <bengris32@protonmail.ch>
This commit is contained in:
bengris32 2023-12-06 19:15:00 +00:00 committed by Bruno Martins
parent 91af720f56
commit 1f09af7a5a
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,14 @@
// This file is autogenerated by hidl-gen -Landroidbp.
hidl_interface {
name: "vendor.xiaomi.hardware.fx.tunnel@1.0",
root: "vendor.xiaomi",
system_ext_specific: true,
srcs: [
"IMiFxTunnel.hal",
],
interfaces: [
"android.hidl.base@1.0",
],
gen_java: true,
}

View File

@ -0,0 +1,11 @@
/*
* Copyright (C) 2024 The LineageOS Project
*
* SPDX-License-Identifier: Apache-2.0
*/
package vendor.xiaomi.hardware.fx.tunnel@1.0;
interface IMiFxTunnel {
invokeCommand(int32_t cmdId, vec<uint8_t> params) generates (int32_t resultCode, vec<uint8_t> out_buf);
};