2018-08-16 19:47:36 -04:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.FspSrv
|
2018-02-21 16:56:52 -05:00
|
|
|
{
|
|
|
|
static class FsErr
|
|
|
|
{
|
|
|
|
public const int PathDoesNotExist = 1;
|
|
|
|
public const int PathAlreadyExists = 2;
|
|
|
|
public const int PathAlreadyInUse = 7;
|
2018-11-18 14:37:41 -05:00
|
|
|
public const int PartitionNotFound = 1001;
|
|
|
|
public const int InvalidInput = 6001;
|
2018-02-21 16:56:52 -05:00
|
|
|
}
|
|
|
|
}
|