summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nvnflinger/binder.h
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2024-02-14 06:09:29 +0100
committerLiam <byteslice@airmail.cc>2024-02-14 18:03:32 +0100
commit59011a04a10d20804eb1eb4c8164b64d0f0ca824 (patch)
tree23d4943c7c49b7d16434231d441d2934fe06193f /src/core/hle/service/nvnflinger/binder.h
parentvi: rewrite IApplicationRootService, IManagerRootService, ISystemRootService (diff)
downloadyuzu-59011a04a10d20804eb1eb4c8164b64d0f0ca824.tar
yuzu-59011a04a10d20804eb1eb4c8164b64d0f0ca824.tar.gz
yuzu-59011a04a10d20804eb1eb4c8164b64d0f0ca824.tar.bz2
yuzu-59011a04a10d20804eb1eb4c8164b64d0f0ca824.tar.lz
yuzu-59011a04a10d20804eb1eb4c8164b64d0f0ca824.tar.xz
yuzu-59011a04a10d20804eb1eb4c8164b64d0f0ca824.tar.zst
yuzu-59011a04a10d20804eb1eb4c8164b64d0f0ca824.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/nvnflinger/binder.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/core/hle/service/nvnflinger/binder.h b/src/core/hle/service/nvnflinger/binder.h
index aef1477e3..179938192 100644
--- a/src/core/hle/service/nvnflinger/binder.h
+++ b/src/core/hle/service/nvnflinger/binder.h
@@ -6,6 +6,8 @@
#pragma once
+#include <span>
+
#include "common/common_types.h"
namespace Kernel {
@@ -38,7 +40,8 @@ enum class TransactionId {
class IBinder {
public:
virtual ~IBinder() = default;
- virtual void Transact(HLERequestContext& ctx, android::TransactionId code, u32 flags) = 0;
+ virtual void Transact(android::TransactionId code, u32 flags, std::span<const u8> parcel_data,
+ std::span<u8> parcel_reply) = 0;
virtual Kernel::KReadableEvent& GetNativeHandle() = 0;
};