mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-05-06 05:15:47 +00:00
20 lines
630 B
C#
20 lines
630 B
C#
using Ryujinx.HLE.HOS.Services.Ldn.UserServiceCreator;
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Ldn
|
|
{
|
|
[Service("ldn:u")]
|
|
class IUserServiceCreator : IpcService
|
|
{
|
|
public IUserServiceCreator(ServiceCtx context) : base(context.Device.System.LdnServer) { }
|
|
|
|
[CommandCmif(0)]
|
|
// CreateUserLocalCommunicationService() -> object<nn::ldn::detail::IUserLocalCommunicationService>
|
|
public ResultCode CreateUserLocalCommunicationService(ServiceCtx context)
|
|
{
|
|
MakeObject(context, new IUserLocalCommunicationService(context));
|
|
|
|
return ResultCode.Success;
|
|
}
|
|
}
|
|
}
|