summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/filesystem/fsp/fsp_ldr.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/service/filesystem/fsp/fsp_ldr.h')
-rw-r--r--src/core/hle/service/filesystem/fsp/fsp_ldr.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/core/hle/service/filesystem/fsp/fsp_ldr.h b/src/core/hle/service/filesystem/fsp/fsp_ldr.h
new file mode 100644
index 000000000..358739a87
--- /dev/null
+++ b/src/core/hle/service/filesystem/fsp/fsp_ldr.h
@@ -0,0 +1,20 @@
+// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
+// SPDX-License-Identifier: GPL-2.0-or-later
+
+#pragma once
+
+#include "core/hle/service/service.h"
+
+namespace Core {
+class System;
+}
+
+namespace Service::FileSystem {
+
+class FSP_LDR final : public ServiceFramework<FSP_LDR> {
+public:
+ explicit FSP_LDR(Core::System& system_);
+ ~FSP_LDR() override;
+};
+
+} // namespace Service::FileSystem