IUserServiceCreator.cs 592 B

12345678910111213141516171819
  1. using Ryujinx.HLE.HOS.Services.Ldn.UserServiceCreator;
  2. namespace Ryujinx.HLE.HOS.Services.Ldn
  3. {
  4. [Service("ldn:u")]
  5. class IUserServiceCreator : IpcService
  6. {
  7. public IUserServiceCreator(ServiceCtx context) { }
  8. [CommandHipc(0)]
  9. // CreateUserLocalCommunicationService() -> object<nn::ldn::detail::IUserLocalCommunicationService>
  10. public ResultCode CreateUserLocalCommunicationService(ServiceCtx context)
  11. {
  12. MakeObject(context, new IUserLocalCommunicationService(context));
  13. return ResultCode.Success;
  14. }
  15. }
  16. }