0
0
Fork 0
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2024-10-19 14:21:41 +00:00
ryujinx-fork/Ryujinx.HLE/HOS/Services/Lm/ILogService.cs

17 lines
382 B
C#
Raw Normal View History

namespace Ryujinx.HLE.HOS.Services.Lm
{
[Service("lm")]
class ILogService : IpcService
{
public ILogService(ServiceCtx context) { }
[Command(0)]
// Initialize(u64, pid) -> object<nn::lm::ILogger>
public long Initialize(ServiceCtx context)
{
MakeObject(context, new ILogger());
return 0;
}
}
}