Ryujinx/Ryujinx.HLE/HOS/Services/Nifm/GeneralServiceDetail.cs
Ac_K c67f0a7c4b IGeneralService Implement GetClientId and IsAnyInternetRequestAccepted (#749)
* IGeneralService Implement GetClientId and IsAnyInternetRequestAccepted

- Add nifm:a and nifm:u with a max sessions as comment since sm don't take care of sessions for now.
- Implement IGeneralService GetClientId based on RE (close #623).
- Implement IGeneralService IsAnyInternetRequestAccepted based on RE (close #624).
- Add some informations in IGeneralService CreateRequest.
- Fix a comment in IAccountService.

* Fix requested changes
2019-09-04 18:09:20 +02:00

8 lines
169 B
C#

namespace Ryujinx.HLE.HOS.Services.Nifm
{
class GeneralServiceDetail
{
public int ClientId;
public bool IsAnyInternetRequestAccepted;
}
}