summaryrefslogtreecommitdiffstats
path: root/src/core/hle/ipc_helpers.h
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2018-01-07 15:59:38 +0100
committerbunnei <bunneidev@gmail.com>2018-01-07 23:11:58 +0100
commitba2ffd7b8112d6dccbbecb1ba2438ce4c53b4fbe (patch)
treec82f2f1a9fe8aa2cc07c3a558ad4a4d5ca00b0e0 /src/core/hle/ipc_helpers.h
parentSM: Fixed connecting to services with an 8-byte name, like appletOE. (diff)
downloadyuzu-ba2ffd7b8112d6dccbbecb1ba2438ce4c53b4fbe.tar
yuzu-ba2ffd7b8112d6dccbbecb1ba2438ce4c53b4fbe.tar.gz
yuzu-ba2ffd7b8112d6dccbbecb1ba2438ce4c53b4fbe.tar.bz2
yuzu-ba2ffd7b8112d6dccbbecb1ba2438ce4c53b4fbe.tar.lz
yuzu-ba2ffd7b8112d6dccbbecb1ba2438ce4c53b4fbe.tar.xz
yuzu-ba2ffd7b8112d6dccbbecb1ba2438ce4c53b4fbe.tar.zst
yuzu-ba2ffd7b8112d6dccbbecb1ba2438ce4c53b4fbe.zip
Diffstat (limited to 'src/core/hle/ipc_helpers.h')
-rw-r--r--src/core/hle/ipc_helpers.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/core/hle/ipc_helpers.h b/src/core/hle/ipc_helpers.h
index b58e33a69..40e6c4897 100644
--- a/src/core/hle/ipc_helpers.h
+++ b/src/core/hle/ipc_helpers.h
@@ -205,12 +205,14 @@ public:
}
RequestBuilder MakeBuilder(u32 normal_params_size, u32 num_handles_to_copy,
- u32 num_handles_to_move, bool validate_header = true) {
+ u32 num_handles_to_move, u32 num_domain_objects,
+ bool validate_header = true) {
if (validate_header) {
ValidateHeader();
}
- return {*context, normal_params_size, num_handles_to_copy, num_handles_to_move};
+ return {*context, normal_params_size, num_handles_to_copy, num_handles_to_move,
+ num_domain_objects};
}
template <typename T>