aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Tests.Unicorn/Native/Const/Permission.cs
blob: 19ddc4f2701691f0fefe3ded70b78ee4b7684915 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Constants for Unicorn Engine. AUTO-GENERATED FILE, DO NOT EDIT

// ReSharper disable InconsistentNaming
namespace Ryujinx.Tests.Unicorn.Native.Const
{
    public enum Permission
    {
        NONE = 0,
        READ = 1,
        WRITE = 2,
        EXEC = 4,
        ALL = 7,
    }
}