ILogService.cs 405 B

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