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 f8f23bf899
commit c2356a7653
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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
}
}