diff --git a/src/core/hle/ipc_helpers.h b/src/core/hle/ipc_helpers.h index 08843989b..9e687b518 100644 --- a/src/core/hle/ipc_helpers.h +++ b/src/core/hle/ipc_helpers.h @@ -98,6 +98,15 @@ public: template void Push(const First& first_value, const Other&... other_values); + template + void PushEnum(T value) { + static_assert(std::is_enum(), "T must be an enum type within a PushEnum call."); + static_assert(!std::is_convertible(), + "enum type in PushEnum must be a strongly typed enum."); + static_assert(sizeof(value) < sizeof(u64), "64-bit enums may not be pushed."); + Push(static_cast>(value)); + } + /** * @brief Copies the content of the given trivially copyable class to the buffer as a normal * param @@ -273,6 +282,15 @@ public: template void Pop(First& first_value, Other&... other_values); + template + T PopEnum() { + static_assert(std::is_enum(), "T must be an enum type within a PopEnum call."); + static_assert(!std::is_convertible(), + "enum type in PopEnum must be a strongly typed enum."); + static_assert(sizeof(T) < sizeof(u64), "64-bit enums cannot be popped."); + return static_cast(Pop>()); + } + /// Equivalent to calling `PopHandles<1>()[0]`. Kernel::Handle PopHandle();