aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/pctl/pctl_results.h
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2024-02-21 20:52:51 -0500
committerLiam <byteslice@airmail.cc>2024-02-21 22:58:20 -0500
commit01d89acd139e50470c41e5cd04df4acd49b635c6 (patch)
tree314e77aff102c9d4422964b07d72ead777a07cdd /src/core/hle/service/pctl/pctl_results.h
parente540757279ee2e9cc1ed395f0480d6136d57e1b9 (diff)
pctl: move types and results
Diffstat (limited to 'src/core/hle/service/pctl/pctl_results.h')
-rw-r--r--src/core/hle/service/pctl/pctl_results.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/core/hle/service/pctl/pctl_results.h b/src/core/hle/service/pctl/pctl_results.h
new file mode 100644
index 000000000..1fc54727b
--- /dev/null
+++ b/src/core/hle/service/pctl/pctl_results.h
@@ -0,0 +1,15 @@
+// SPDX-FileCopyrightText: Copyright 2024 yuzu Emulator Project
+// SPDX-License-Identifier: GPL-2.0-or-later
+
+#pragma once
+
+#include "core/hle/result.h"
+
+namespace Service::PCTL {
+
+constexpr Result ResultNoFreeCommunication{ErrorModule::PCTL, 101};
+constexpr Result ResultStereoVisionRestricted{ErrorModule::PCTL, 104};
+constexpr Result ResultNoCapability{ErrorModule::PCTL, 131};
+constexpr Result ResultNoRestrictionEnabled{ErrorModule::PCTL, 181};
+
+} // namespace Service::PCTL