aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/pctl/pctl_module.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_module.h
parente540757279ee2e9cc1ed395f0480d6136d57e1b9 (diff)
pctl: move types and results
Diffstat (limited to 'src/core/hle/service/pctl/pctl_module.h')
-rw-r--r--src/core/hle/service/pctl/pctl_module.h13
1 files changed, 1 insertions, 12 deletions
diff --git a/src/core/hle/service/pctl/pctl_module.h b/src/core/hle/service/pctl/pctl_module.h
index dff0d3f08..715c05b20 100644
--- a/src/core/hle/service/pctl/pctl_module.h
+++ b/src/core/hle/service/pctl/pctl_module.h
@@ -3,7 +3,7 @@
#pragma once
-#include "common/common_funcs.h"
+#include "core/hle/service/pctl/pctl_types.h"
#include "core/hle/service/service.h"
namespace Core {
@@ -12,17 +12,6 @@ class System;
namespace Service::PCTL {
-enum class Capability : u32 {
- None = 0,
- Application = 1 << 0,
- SnsPost = 1 << 1,
- Recovery = 1 << 6,
- Status = 1 << 8,
- StereoVision = 1 << 9,
- System = 1 << 15,
-};
-DECLARE_ENUM_FLAG_OPERATORS(Capability);
-
class Module final {
public:
class Interface : public ServiceFramework<Interface> {