2019-09-18 19:45:11 -05:00
|
|
|
using Ryujinx.HLE.HOS.Services.Lm.LogService;
|
|
|
|
|
2018-08-16 18:47:36 -05:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Lm
|
2018-02-09 18:14:55 -06:00
|
|
|
{
|
2019-07-10 10:59:54 -05:00
|
|
|
[Service("lm")]
|
2018-04-05 23:01:52 -05:00
|
|
|
class ILogService : IpcService
|
2018-02-09 18:14:55 -06:00
|
|
|
{
|
2019-07-11 20:13:43 -05:00
|
|
|
public ILogService(ServiceCtx context) { }
|
2018-02-09 18:14:55 -06:00
|
|
|
|
2019-07-11 20:13:43 -05:00
|
|
|
[Command(0)]
|
|
|
|
// Initialize(u64, pid) -> object<nn::lm::ILogger>
|
2019-07-14 14:04:38 -05:00
|
|
|
public ResultCode Initialize(ServiceCtx context)
|
2018-02-09 18:14:55 -06:00
|
|
|
{
|
2018-12-06 05:16:24 -06:00
|
|
|
MakeObject(context, new ILogger());
|
2018-02-25 12:58:16 -06:00
|
|
|
|
2019-07-14 14:04:38 -05:00
|
|
|
return ResultCode.Success;
|
2018-02-09 18:14:55 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|