lm: Implement lm::Initialize and Logger::log.

This commit is contained in:
bunnei
2017-10-18 21:41:24 -04:00
parent 654fae29c1
commit 716e5cf070
2 changed files with 67 additions and 3 deletions

View File

@ -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.