Move solution and projects to src

This commit is contained in:
TSR Berry
2023-04-08 01:22:00 +02:00
committed by Mary
parent cd124bda58
commit cee7121058
3466 changed files with 55 additions and 55 deletions
@@ -0,0 +1,20 @@
namespace Ryujinx.HLE.HOS.Services.Ncm.Lr
{
enum ResultCode
{
ModuleId = 8,
ErrorCodeShift = 9,
Success = 0,
ProgramLocationEntryNotFound = (2 << ErrorCodeShift) | ModuleId,
InvalidContextForControlLocation = (3 << ErrorCodeShift) | ModuleId,
StorageNotFound = (4 << ErrorCodeShift) | ModuleId,
AccessDenied = (5 << ErrorCodeShift) | ModuleId,
OfflineManualHTMLLocationEntryNotFound = (6 << ErrorCodeShift) | ModuleId,
TitleIsNotRegistered = (7 << ErrorCodeShift) | ModuleId,
ControlLocationEntryForHostNotFound = (8 << ErrorCodeShift) | ModuleId,
LegalInfoHTMLLocationEntryNotFound = (9 << ErrorCodeShift) | ModuleId,
ProgramLocationForDebugEntryNotFound = (10 << ErrorCodeShift) | ModuleId
}
}