IUserService.cs 416 B

12345678910111213
  1. using Ryujinx.Horizon.Common;
  2. using Ryujinx.Horizon.Sdk.Sf;
  3. namespace Ryujinx.Horizon.Sdk.Sm
  4. {
  5. interface IUserService : IServiceObject
  6. {
  7. Result Initialize(ulong clientProcessId);
  8. Result GetService(out int handle, ServiceName name);
  9. Result RegisterService(out int handle, ServiceName name, int maxSessions, bool isLight);
  10. Result UnregisterService(ServiceName name);
  11. }
  12. }