summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/vi/vi_results.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2022-10-02 12:02:59 +0200
committerGitHub <noreply@github.com>2022-10-02 12:02:59 +0200
commit80a3a731237472d8d2141243ca322ccf3276483c (patch)
treeeafea51bbdb8d7ceb9e69cd2d9b1156f1f3c3b9b /src/core/hle/service/vi/vi_results.h
parentMerge pull request #6598 from FernandoS27/falklands-are-british (diff)
parentservice: vi: Retrieve vsync event once per display (diff)
downloadyuzu-80a3a731237472d8d2141243ca322ccf3276483c.tar
yuzu-80a3a731237472d8d2141243ca322ccf3276483c.tar.gz
yuzu-80a3a731237472d8d2141243ca322ccf3276483c.tar.bz2
yuzu-80a3a731237472d8d2141243ca322ccf3276483c.tar.lz
yuzu-80a3a731237472d8d2141243ca322ccf3276483c.tar.xz
yuzu-80a3a731237472d8d2141243ca322ccf3276483c.tar.zst
yuzu-80a3a731237472d8d2141243ca322ccf3276483c.zip
Diffstat (limited to 'src/core/hle/service/vi/vi_results.h')
-rw-r--r--src/core/hle/service/vi/vi_results.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/core/hle/service/vi/vi_results.h b/src/core/hle/service/vi/vi_results.h
new file mode 100644
index 000000000..a46c247d2
--- /dev/null
+++ b/src/core/hle/service/vi/vi_results.h
@@ -0,0 +1,13 @@
+// SPDX-FileCopyrightText: Copyright 2022 yuzu Emulator Project
+// SPDX-License-Identifier: GPL-2.0-or-later
+
+#include "core/hle/result.h"
+
+namespace Service::VI {
+
+constexpr Result ResultOperationFailed{ErrorModule::VI, 1};
+constexpr Result ResultPermissionDenied{ErrorModule::VI, 5};
+constexpr Result ResultNotSupported{ErrorModule::VI, 6};
+constexpr Result ResultNotFound{ErrorModule::VI, 7};
+
+} // namespace Service::VI