summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ldr/ldr.h
diff options
context:
space:
mode:
authorSebastian Valle <subv2112@gmail.com>2018-07-26 06:44:13 +0200
committerGitHub <noreply@github.com>2018-07-26 06:44:13 +0200
commit1958d07d7d881d631f0aa298f529d95aded736a9 (patch)
tree8f2a83b78bcc1f96b43365472efcc055f986ca71 /src/core/hle/service/ldr/ldr.h
parentMerge pull request #826 from lioncash/erpt (diff)
parentservice: Add ldr services (diff)
downloadyuzu-1958d07d7d881d631f0aa298f529d95aded736a9.tar
yuzu-1958d07d7d881d631f0aa298f529d95aded736a9.tar.gz
yuzu-1958d07d7d881d631f0aa298f529d95aded736a9.tar.bz2
yuzu-1958d07d7d881d631f0aa298f529d95aded736a9.tar.lz
yuzu-1958d07d7d881d631f0aa298f529d95aded736a9.tar.xz
yuzu-1958d07d7d881d631f0aa298f529d95aded736a9.tar.zst
yuzu-1958d07d7d881d631f0aa298f529d95aded736a9.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/ldr/ldr.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/core/hle/service/ldr/ldr.h b/src/core/hle/service/ldr/ldr.h
new file mode 100644
index 000000000..412410c4f
--- /dev/null
+++ b/src/core/hle/service/ldr/ldr.h
@@ -0,0 +1,16 @@
+// Copyright 2018 yuzu emulator team
+// Licensed under GPLv2 or any later version
+// Refer to the license.txt file included.
+
+#pragma once
+
+namespace Service::SM {
+class ServiceManager;
+}
+
+namespace Service::LDR {
+
+/// Registers all LDR services with the specified service manager.
+void InstallInterfaces(SM::ServiceManager& sm);
+
+} // namespace Service::LDR