summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/fs.h
diff options
context:
space:
mode:
authorbunnei <ericbunnie@gmail.com>2014-06-26 23:58:44 +0200
committerbunnei <ericbunnie@gmail.com>2014-06-27 22:58:30 +0200
commit48e39fc9928f3dabc1954c1acb650d2f57f6a491 (patch)
treecf3143a421d90c47cc1ca3e33c6acae844b57434 /src/core/hle/service/fs.h
parentKernel: Added stubbed code to support creation of kernel Archive objects. (diff)
downloadyuzu-48e39fc9928f3dabc1954c1acb650d2f57f6a491.tar
yuzu-48e39fc9928f3dabc1954c1acb650d2f57f6a491.tar.gz
yuzu-48e39fc9928f3dabc1954c1acb650d2f57f6a491.tar.bz2
yuzu-48e39fc9928f3dabc1954c1acb650d2f57f6a491.tar.lz
yuzu-48e39fc9928f3dabc1954c1acb650d2f57f6a491.tar.xz
yuzu-48e39fc9928f3dabc1954c1acb650d2f57f6a491.tar.zst
yuzu-48e39fc9928f3dabc1954c1acb650d2f57f6a491.zip
Diffstat (limited to 'src/core/hle/service/fs.h')
-rw-r--r--src/core/hle/service/fs.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/core/hle/service/fs.h b/src/core/hle/service/fs.h
new file mode 100644
index 000000000..34b0610ad
--- /dev/null
+++ b/src/core/hle/service/fs.h
@@ -0,0 +1,31 @@
+// Copyright 2014 Citra Emulator Project
+// Licensed under GPLv2
+// Refer to the license.txt file included.
+
+#pragma once
+
+#include "core/hle/service/service.h"
+
+////////////////////////////////////////////////////////////////////////////////////////////////////
+// Namespace FS_User
+
+namespace FS_User {
+
+/// Interface to "fs:USER" service
+class Interface : public Service::Interface {
+public:
+
+ Interface();
+
+ ~Interface();
+
+ /**
+ * Gets the string port name used by CTROS for the service
+ * @return Port name of service
+ */
+ const char *GetPortName() const {
+ return "Ufs:";
+ }
+};
+
+} // namespace