1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-03-23 10:05:46 -05:00
2023-04-27 23:51:14 +02:00

16 lines
476 B
C#

namespace Ryujinx.HLE.HOS.Services.Fs
{
enum ResultCode
{
ModuleId = 2,
ErrorCodeShift = 9,
Success = 0,
PathDoesNotExist = (1 << ErrorCodeShift) | ModuleId,
PathAlreadyExists = (2 << ErrorCodeShift) | ModuleId,
PathAlreadyInUse = (7 << ErrorCodeShift) | ModuleId,
PartitionNotFound = (1001 << ErrorCodeShift) | ModuleId,
InvalidInput = (6001 << ErrorCodeShift) | ModuleId
}
}