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