aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/set/set.h
diff options
context:
space:
mode:
authormailwl <mailwl@gmail.com>2018-03-02 11:49:35 +0300
committermailwl <mailwl@gmail.com>2018-03-03 09:03:49 +0300
commit28669872d93ae726c3f97f6e9ac8da984e313646 (patch)
tree46b17dc2c96a5b031dfd841ad8d7bf27057c42c8 /src/core/hle/service/set/set.h
parent46fc7d85023f4449b542f0c58830421d667f92b7 (diff)
Service/Set: add more services
Diffstat (limited to 'src/core/hle/service/set/set.h')
-rw-r--r--src/core/hle/service/set/set.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/core/hle/service/set/set.h b/src/core/hle/service/set/set.h
index 61e957946..7b7814ed1 100644
--- a/src/core/hle/service/set/set.h
+++ b/src/core/hle/service/set/set.h
@@ -11,15 +11,12 @@ namespace Set {
class SET final : public ServiceFramework<SET> {
public:
- explicit SET(const char* name);
+ explicit SET();
~SET() = default;
private:
void GetAvailableLanguageCodes(Kernel::HLERequestContext& ctx);
};
-/// Registers all Set services with the specified service manager.
-void InstallInterfaces(SM::ServiceManager& service_manager);
-
} // namespace Set
} // namespace Service