This commit is contained in:
emmauss 2018-04-05 01:16:59 +03:00 committed by gdkchan
parent e16ca561cb
commit 836a003c8e
8 changed files with 59 additions and 4 deletions

View file

@ -19,7 +19,9 @@ namespace Ryujinx.Core.OsHle.Services.Nifm
{
{ 0, GetRequestState },
{ 1, GetResult },
{ 2, GetSystemEventReadableHandles }
{ 2, GetSystemEventReadableHandles },
{ 3, Cancel },
{ 4, Submit },
};
Event = new KEvent();
@ -52,6 +54,20 @@ namespace Ryujinx.Core.OsHle.Services.Nifm
return 0;
}
public long Cancel(ServiceCtx Context)
{
//Todo: Stub
return 0;
}
public long Submit(ServiceCtx Context)
{
//Todo: Stub
return 0;
}
public void Dispose()
{
Dispose(true);