blob: a4b70bd583a0da158281c4d1b685086a7415370e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
using Ryujinx.Horizon.Common;
namespace Ryujinx.Horizon.Sdk.Fs
{
static class FsResult
{
private const int ModuleId = 2;
public static Result PathNotFound => new(ModuleId, 1);
public static Result PathAlreadyExists => new(ModuleId, 2);
public static Result TargetNotFound => new(ModuleId, 1002);
}
}
|