summaryrefslogtreecommitdiffstats
path: root/src/core/reporter.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2019-07-08 03:39:40 +0200
committerGitHub <noreply@github.com>2019-07-08 03:39:40 +0200
commit8f5aae30746f678eed69d8f311e9b5634a8dd12c (patch)
tree3755447c918a345e88cca7a5e925543ea1a9fc4f /src/core/reporter.h
parentMerge pull request #2694 from FearlessTobi/patch-1 (diff)
parentfsp-srv: Implement GetAccessLogVersionInfo (diff)
downloadyuzu-8f5aae30746f678eed69d8f311e9b5634a8dd12c.tar
yuzu-8f5aae30746f678eed69d8f311e9b5634a8dd12c.tar.gz
yuzu-8f5aae30746f678eed69d8f311e9b5634a8dd12c.tar.bz2
yuzu-8f5aae30746f678eed69d8f311e9b5634a8dd12c.tar.lz
yuzu-8f5aae30746f678eed69d8f311e9b5634a8dd12c.tar.xz
yuzu-8f5aae30746f678eed69d8f311e9b5634a8dd12c.tar.zst
yuzu-8f5aae30746f678eed69d8f311e9b5634a8dd12c.zip
Diffstat (limited to 'src/core/reporter.h')
-rw-r--r--src/core/reporter.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/core/reporter.h b/src/core/reporter.h
index 4266ca550..44256de50 100644
--- a/src/core/reporter.h
+++ b/src/core/reporter.h
@@ -16,6 +16,10 @@ namespace Kernel {
class HLERequestContext;
} // namespace Kernel
+namespace Service::FileSystem {
+enum class LogMode : u32;
+}
+
namespace Core {
class System;
@@ -49,6 +53,9 @@ public:
std::optional<std::string> custom_text_main = {},
std::optional<std::string> custom_text_detail = {}) const;
+ void SaveFilesystemAccessReport(Service::FileSystem::LogMode log_mode,
+ std::string log_message) const;
+
void SaveUserReport() const;
private: