mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-23 05:39:00 -05:00
lm: Implement lm::Initialize and Logger::log.
This commit is contained in:
@ -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.
|
||||
|
Reference in New Issue
Block a user