using Ryujinx.HLE.HOS.Services.Ldn.UserServiceCreator; namespace Ryujinx.HLE.HOS.Services.Ldn { [Service("ldn:u")] class IUserServiceCreator : IpcService { public IUserServiceCreator(ServiceCtx context) { } [CommandHipc(0)] // CreateUserLocalCommunicationService() -> object public ResultCode CreateUserLocalCommunicationService(ServiceCtx context) { MakeObject(context, new IUserLocalCommunicationService(context)); return ResultCode.Success; } } }