summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nvnflinger/binder.h
diff options
context:
space:
mode:
authorNarr the Reg <juangerman-13@hotmail.com>2024-02-16 19:11:02 +0100
committerGitHub <noreply@github.com>2024-02-16 19:11:02 +0100
commit6e2678a42cb4a0ad02a7c8959621b0c98353c572 (patch)
treee1d71c4545dacdc7940c2a8b67ea534c6e52d58a /src/core/hle/service/nvnflinger/binder.h
parentMerge pull request #12996 from german77/settings-ipc (diff)
parentvi: rewrite IApplicationDisplayService (diff)
downloadyuzu-6e2678a42cb4a0ad02a7c8959621b0c98353c572.tar
yuzu-6e2678a42cb4a0ad02a7c8959621b0c98353c572.tar.gz
yuzu-6e2678a42cb4a0ad02a7c8959621b0c98353c572.tar.bz2
yuzu-6e2678a42cb4a0ad02a7c8959621b0c98353c572.tar.lz
yuzu-6e2678a42cb4a0ad02a7c8959621b0c98353c572.tar.xz
yuzu-6e2678a42cb4a0ad02a7c8959621b0c98353c572.tar.zst
yuzu-6e2678a42cb4a0ad02a7c8959621b0c98353c572.zip
Diffstat (limited to 'src/core/hle/service/nvnflinger/binder.h')
-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;
};