2019-11-21 13:24:06 +01:00
|
|
|
|
using Ryujinx.HLE.HOS.Services.Ldn.UserServiceCreator;
|
|
|
|
|
|
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Ldn
|
2019-09-19 02:45:11 +02:00
|
|
|
|
{
|
|
|
|
|
[Service("ldn:u")]
|
|
|
|
|
class IUserServiceCreator : IpcService
|
|
|
|
|
{
|
|
|
|
|
public IUserServiceCreator(ServiceCtx context) { }
|
2019-11-21 13:24:06 +01:00
|
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
|
[CommandHipc(0)]
|
2019-11-21 13:24:06 +01:00
|
|
|
|
// CreateUserLocalCommunicationService() -> object<nn::ldn::detail::IUserLocalCommunicationService>
|
|
|
|
|
public ResultCode CreateUserLocalCommunicationService(ServiceCtx context)
|
|
|
|
|
{
|
|
|
|
|
MakeObject(context, new IUserLocalCommunicationService(context));
|
|
|
|
|
|
|
|
|
|
return ResultCode.Success;
|
|
|
|
|
}
|
2019-09-19 02:45:11 +02:00
|
|
|
|
}
|
|
|
|
|
}
|