Updates to latest pkmnlib
parent
02c812a84b
commit
1153ad6034
@ -0,0 +1,20 @@
|
||||
// AUTOMATICALLY GENERATED, DO NOT EDIT
|
||||
using System.Diagnostics.CodeAnalysis;
|
||||
|
||||
namespace Pkmnlib
|
||||
{
|
||||
[SuppressMessage("ReSharper", "InconsistentNaming")]
|
||||
internal enum file_type : byte
|
||||
{
|
||||
not_found = 255,
|
||||
none = 0,
|
||||
regular = 1,
|
||||
directory = 2,
|
||||
symlink = 3,
|
||||
block = 4,
|
||||
character = 5,
|
||||
fifo = 6,
|
||||
socket = 7,
|
||||
unknown = 8,
|
||||
}
|
||||
}
|
@ -0,0 +1,13 @@
|
||||
// AUTOMATICALLY GENERATED, DO NOT EDIT
|
||||
using System.Diagnostics.CodeAnalysis;
|
||||
|
||||
namespace Pkmnlib
|
||||
{
|
||||
[SuppressMessage("ReSharper", "InconsistentNaming")]
|
||||
internal enum format : byte
|
||||
{
|
||||
native_format = 0,
|
||||
generic_format = 1,
|
||||
auto_format = 2,
|
||||
}
|
||||
}
|
@ -0,0 +1,29 @@
|
||||
// AUTOMATICALLY GENERATED, DO NOT EDIT
|
||||
using System.Diagnostics.CodeAnalysis;
|
||||
|
||||
namespace Pkmnlib
|
||||
{
|
||||
[SuppressMessage("ReSharper", "InconsistentNaming")]
|
||||
internal enum perms : int
|
||||
{
|
||||
none = 0,
|
||||
others_exec = 1,
|
||||
others_write = 2,
|
||||
others_read = 4,
|
||||
others_all = 7,
|
||||
group_exec = 8,
|
||||
group_write = 16,
|
||||
group_read = 32,
|
||||
group_all = 56,
|
||||
owner_exec = 64,
|
||||
owner_write = 128,
|
||||
owner_read = 256,
|
||||
owner_all = 448,
|
||||
all = 511,
|
||||
sticky_bit = 512,
|
||||
set_gid = 1024,
|
||||
set_uid = 2048,
|
||||
mask = 4095,
|
||||
unknown = 65535,
|
||||
}
|
||||
}
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue