ILogService.cs 456 B

12345678910111213141516171819
  1. using Ryujinx.HLE.HOS.Services.Lm.LogService;
  2. namespace Ryujinx.HLE.HOS.Services.Lm
  3. {
  4. [Service("lm")]
  5. class ILogService : IpcService
  6. {
  7. public ILogService(ServiceCtx context) { }
  8. [CommandHipc(0)]
  9. // Initialize(u64, pid) -> object<nn::lm::ILogger>
  10. public ResultCode Initialize(ServiceCtx context)
  11. {
  12. MakeObject(context, new ILogger());
  13. return ResultCode.Success;
  14. }
  15. }
  16. }