From 716e5cf070251b9147f5ceb877e4417382a6c63b Mon Sep 17 00:00:00 2001 From: bunnei Date: Wed, 18 Oct 2017 21:41:24 -0400 Subject: lm: Implement lm::Initialize and Logger::log. --- src/core/hle/service/lm/lm.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/core/hle/service/lm/lm.h') diff --git a/src/core/hle/service/lm/lm.h b/src/core/hle/service/lm/lm.h index c497d82eb..05a92f712 100644 --- a/src/core/hle/service/lm/lm.h +++ b/src/core/hle/service/lm/lm.h @@ -4,6 +4,9 @@ #pragma once +#include +#include "core/hle/kernel/client_port.h" +#include "core/hle/kernel/kernel.h" #include "core/hle/service/service.h" namespace Service { @@ -16,6 +19,8 @@ public: private: void Initialize(Kernel::HLERequestContext& ctx); + + std::vector> registered_loggers; }; /// Registers all LM services with the specified service manager. -- cgit v1.2.3