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, } }