stubs (#69)
This commit is contained in:
@@ -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);
|
||||
|
Reference in New Issue
Block a user