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:
Starlet 2018-06-02 18:46:09 -04:00 committed by gdkchan
parent 0447840a5a
commit ed2aa2378b
22 changed files with 449 additions and 109 deletions

View file

@ -174,34 +174,34 @@ namespace Ryujinx.Core.OsHle.Ipc
return 0;
}
public long GetBufferType0x21Position()
public (long Position, long Size) GetBufferType0x21()
{
if (PtrBuff.Count > 0 && PtrBuff[0].Position != 0)
if (PtrBuff.Count > 0 && PtrBuff[0].Position != 0 && PtrBuff[0].Size != 0)
{
return PtrBuff[0].Position;
return (PtrBuff[0].Position, PtrBuff[0].Size);
}
if (SendBuff.Count > 0)
if (SendBuff.Count > 0 && SendBuff[0].Position != 0 && SendBuff[0].Size != 0)
{
return SendBuff[0].Position;
return (SendBuff[0].Position, SendBuff[0].Size);
}
return 0;
return (0, 0);
}
public long GetBufferType0x22Position()
public (long Position, long Size) GetBufferType0x22()
{
if (RecvListBuff.Count > 0 && RecvListBuff[0].Position != 0)
if (RecvListBuff.Count > 0 && RecvListBuff[0].Position != 0 && RecvListBuff[0].Size != 0)
{
return RecvListBuff[0].Position;
return (RecvListBuff[0].Position, RecvListBuff[0].Size);
}
if (ReceiveBuff.Count > 0)
if (ReceiveBuff.Count > 0 && ReceiveBuff[0].Position != 0 && ReceiveBuff[0].Size != 0)
{
return ReceiveBuff[0].Position;
return (ReceiveBuff[0].Position, ReceiveBuff[0].Size);
}
return 0;
return (0, 0);
}
}
}