diff options
Diffstat (limited to 'src/core/hle/service/lm/lm.h')
-rw-r--r-- | src/core/hle/service/lm/lm.h | 5 |
1 files changed, 5 insertions, 0 deletions
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 <vector> +#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<Kernel::SharedPtr<Kernel::ClientPort>> registered_loggers; }; /// Registers all LM services with the specified service manager. |