mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-08 11:38:21 +02:00
Added ZeroGap to AllowAppend
This commit is contained in:
parent
ce42dc4fbe
commit
161d9dc540
19 changed files with 334 additions and 88 deletions
|
@ -1347,7 +1347,7 @@ namespace System.Reflection
|
|||
EnumCase = 0x0400
|
||||
}
|
||||
|
||||
public enum MethodFlags : uint16
|
||||
public enum MethodFlags : uint32
|
||||
{
|
||||
MethodAccessMask = 0x0007,
|
||||
PrivateScope = 0x0000, // Member not referenceable.
|
||||
|
@ -1382,5 +1382,9 @@ namespace System.Reflection
|
|||
ThisCall = 0x3000, // Purposely resuing StdCall|FastCall
|
||||
Mutating = 0x4000,
|
||||
Constructor = 0x8000,
|
||||
AppendBit0 = 0x10000,
|
||||
AppendBit1 = 0x20000,
|
||||
CheckedBit0 = 0x40000,
|
||||
CheckedBit1 = 0x80000
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue