mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-11-28 03:22:23 -05:00
Move solution and projects to src
This commit is contained in:
12
src/Ryujinx.HLE/HOS/Services/Apm/ResultCode.cs
Normal file
12
src/Ryujinx.HLE/HOS/Services/Apm/ResultCode.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
namespace Ryujinx.HLE.HOS.Services.Apm
|
||||
{
|
||||
enum ResultCode
|
||||
{
|
||||
ModuleId = 148,
|
||||
ErrorCodeShift = 9,
|
||||
|
||||
Success = 0,
|
||||
|
||||
InvalidParameters = (1 << ErrorCodeShift) | ModuleId
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user