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