diff options
Diffstat (limited to 'Ryujinx.HLE/HOS/Services/Ldn/IUserServiceCreator.cs')
-rw-r--r-- | Ryujinx.HLE/HOS/Services/Ldn/IUserServiceCreator.cs | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/Ryujinx.HLE/HOS/Services/Ldn/IUserServiceCreator.cs b/Ryujinx.HLE/HOS/Services/Ldn/IUserServiceCreator.cs index 052727dd..3fc9ce1c 100644 --- a/Ryujinx.HLE/HOS/Services/Ldn/IUserServiceCreator.cs +++ b/Ryujinx.HLE/HOS/Services/Ldn/IUserServiceCreator.cs @@ -1,8 +1,19 @@ -namespace Ryujinx.HLE.HOS.Services.Ldn +using Ryujinx.HLE.HOS.Services.Ldn.UserServiceCreator; + +namespace Ryujinx.HLE.HOS.Services.Ldn { [Service("ldn:u")] class IUserServiceCreator : IpcService { public IUserServiceCreator(ServiceCtx context) { } + + [Command(0)] + // CreateUserLocalCommunicationService() -> object<nn::ldn::detail::IUserLocalCommunicationService> + public ResultCode CreateUserLocalCommunicationService(ServiceCtx context) + { + MakeObject(context, new IUserLocalCommunicationService(context)); + + return ResultCode.Success; + } } }
\ No newline at end of file |