mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 05:38:32 +00:00
c67f0a7c4b
* 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
8 lines
169 B
C#
8 lines
169 B
C#
namespace Ryujinx.HLE.HOS.Services.Nifm
|
|
{
|
|
class GeneralServiceDetail
|
|
{
|
|
public int ClientId;
|
|
public bool IsAnyInternetRequestAccepted;
|
|
}
|
|
} |