mirror of
https://git.zaroz.cloud/nintendo-back-up/Ryujinx.git
synced 2025-12-19 08:52:42 +00:00
Move solution and projects to src
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
namespace Ryujinx.HLE.HOS.Services.Loader
|
||||
{
|
||||
[Service("ldr:dmnt")]
|
||||
class IDebugMonitorInterface : IpcService
|
||||
{
|
||||
public IDebugMonitorInterface(ServiceCtx context) { }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
namespace Ryujinx.HLE.HOS.Services.Loader
|
||||
{
|
||||
[Service("ldr:pm")]
|
||||
class IProcessManagerInterface : IpcService
|
||||
{
|
||||
public IProcessManagerInterface(ServiceCtx context) { }
|
||||
}
|
||||
}
|
||||
8
src/Ryujinx.HLE/HOS/Services/Loader/IShellInterface.cs
Normal file
8
src/Ryujinx.HLE/HOS/Services/Loader/IShellInterface.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
namespace Ryujinx.HLE.HOS.Services.Loader
|
||||
{
|
||||
[Service("ldr:shel")]
|
||||
class IShellInterface : IpcService
|
||||
{
|
||||
public IShellInterface(ServiceCtx context) { }
|
||||
}
|
||||
}
|
||||
43
src/Ryujinx.HLE/HOS/Services/Loader/ResultCode.cs
Normal file
43
src/Ryujinx.HLE/HOS/Services/Loader/ResultCode.cs
Normal file
@@ -0,0 +1,43 @@
|
||||
namespace Ryujinx.HLE.HOS.Services.Loader
|
||||
{
|
||||
enum ResultCode
|
||||
{
|
||||
ModuleId = 9,
|
||||
ErrorCodeShift = 9,
|
||||
|
||||
Success = 0,
|
||||
|
||||
ArgsTooLong = (1 << ErrorCodeShift) | ModuleId,
|
||||
MaximumProcessesLoaded = (2 << ErrorCodeShift) | ModuleId,
|
||||
NPDMTooBig = (3 << ErrorCodeShift) | ModuleId,
|
||||
InvalidNPDM = (4 << ErrorCodeShift) | ModuleId,
|
||||
InvalidNSO = (5 << ErrorCodeShift) | ModuleId,
|
||||
InvalidPath = (6 << ErrorCodeShift) | ModuleId,
|
||||
AlreadyRegistered = (7 << ErrorCodeShift) | ModuleId,
|
||||
TitleNotFound = (8 << ErrorCodeShift) | ModuleId,
|
||||
ACI0TitleIdNotMatchingRangeInACID = (9 << ErrorCodeShift) | ModuleId,
|
||||
InvalidVersionInNPDM = (10 << ErrorCodeShift) | ModuleId,
|
||||
InsufficientAddressSpace = (51 << ErrorCodeShift) | ModuleId,
|
||||
InsufficientNRO = (52 << ErrorCodeShift) | ModuleId,
|
||||
InvalidNRR = (53 << ErrorCodeShift) | ModuleId,
|
||||
InvalidSignature = (54 << ErrorCodeShift) | ModuleId,
|
||||
InsufficientNRORegistrations = (55 << ErrorCodeShift) | ModuleId,
|
||||
InsufficientNRRRegistrations = (56 << ErrorCodeShift) | ModuleId,
|
||||
NROAlreadyLoaded = (57 << ErrorCodeShift) | ModuleId,
|
||||
UnalignedNRRAddress = (81 << ErrorCodeShift) | ModuleId,
|
||||
BadNRRSize = (82 << ErrorCodeShift) | ModuleId,
|
||||
NRRNotLoaded = (84 << ErrorCodeShift) | ModuleId,
|
||||
BadNRRAddress = (85 << ErrorCodeShift) | ModuleId,
|
||||
BadInitialization = (87 << ErrorCodeShift) | ModuleId,
|
||||
UnknownACI0Descriptor = (100 << ErrorCodeShift) | ModuleId,
|
||||
ACI0NotMatchingKernelFlagsDescriptor = (103 << ErrorCodeShift) | ModuleId,
|
||||
ACI0NotMatchingSyscallMaskDescriptor = (104 << ErrorCodeShift) | ModuleId,
|
||||
ACI0NotMatchingMapIoOrNormalRangeDescriptor = (106 << ErrorCodeShift) | ModuleId,
|
||||
ACI0NotMatchingMapNormalPageDescriptor = (107 << ErrorCodeShift) | ModuleId,
|
||||
ACI0NotMatchingInterruptPairDescriptor = (111 << ErrorCodeShift) | ModuleId,
|
||||
ACI0NotMatchingApplicationTypeDescriptor = (113 << ErrorCodeShift) | ModuleId,
|
||||
ACI0NotMatchingKernelReleaseVersionDescriptor = (114 << ErrorCodeShift) | ModuleId,
|
||||
ACI0NotMatchingHandleTableSizeDescriptor = (115 << ErrorCodeShift) | ModuleId,
|
||||
ACI0NotMatchingDebugFlagsDescriptor = (116 << ErrorCodeShift) | ModuleId
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user