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