mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-08-02 05:47:11 +02:00
SMO stubs and implementations (#129)
* WIP SMO stubs and implementations * fixes? * Add StorageHelper * Whoops * Compliant with review. * Remove unnecessary usings
This commit is contained in:
parent
0447840a5a
commit
ed2aa2378b
22 changed files with 449 additions and 109 deletions
|
@ -16,6 +16,7 @@ namespace Ryujinx.Core.OsHle.Services.Acc
|
|||
{
|
||||
{ 0, GetUserCount },
|
||||
{ 3, ListOpenUsers },
|
||||
{ 4, GetLastOpenedUser },
|
||||
{ 5, GetProfile },
|
||||
{ 100, InitializeApplicationInfo },
|
||||
{ 101, GetBaasAccountManagerForApplication }
|
||||
|
@ -38,6 +39,16 @@ namespace Ryujinx.Core.OsHle.Services.Acc
|
|||
return 0;
|
||||
}
|
||||
|
||||
public long GetLastOpenedUser(ServiceCtx Context)
|
||||
{
|
||||
Context.ResponseData.Write(0L);
|
||||
Context.ResponseData.Write(0L);
|
||||
|
||||
Context.Ns.Log.PrintStub(LogClass.ServiceAcc, "Stubbed.");
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
public long GetProfile(ServiceCtx Context)
|
||||
{
|
||||
MakeObject(Context, new IProfile());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue