olsc: Add service olsc:u and stub some calls (#1734)

This commit is contained in:
Ac_K 2020-11-19 23:56:23 +01:00 committed by GitHub
parent 6b74ea2f94
commit 74aca651e1
3 changed files with 67 additions and 0 deletions

View file

@ -0,0 +1,13 @@
namespace Ryujinx.HLE.HOS.Services.Olsc
{
enum ResultCode
{
ModuleId = 179,
ErrorCodeShift = 9,
Success = 0,
NullArgument = (100 << ErrorCodeShift) | ModuleId,
NotInitialized = (101 << ErrorCodeShift) | ModuleId
}
}