1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 20:42:21 +02:00

Made FileData.mData 64-bit

This commit is contained in:
Brian Fiete 2021-12-29 11:09:37 -05:00
parent 1883b7378a
commit 5e9a6031fb
3 changed files with 14 additions and 15 deletions

View file

@ -654,8 +654,8 @@ namespace System.Reflection
public struct FieldData
{
public String mName;
public int mData;
public TypeId mFieldTypeId;
public TypeId mFieldTypeId;
public int64 mData;
public FieldFlags mFlags;
public int32 mCustomAttributesIdx;
}