1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-24 18:48:01 +02:00

Added support for global:: lookups

This commit is contained in:
Brian Fiete 2025-05-18 12:13:15 +02:00
parent ee50457885
commit 958a1630aa
13 changed files with 202 additions and 28 deletions

View file

@ -42,7 +42,8 @@ enum BfResolveTypeRefFlags
BfResolveTypeRefFlag_AllowUnboundGeneric = 0x40000,
BfResolveTypeRefFlag_ForceUnboundGeneric = 0x80000,
BfResolveTypeRefFlag_IgnoreProtection = 0x100000,
BfResolveTypeRefFlag_SpecializedProject = 0x200000
BfResolveTypeRefFlag_SpecializedProject = 0x200000,
BfResolveTypeRefFlag_GlobalLookup = 0x400000
};
enum BfTypeNameFlags : uint16
@ -1735,7 +1736,7 @@ struct BfTypeLookupEntry
enum Flags : uint8
{
Flags_None,
Flags_SpecializedProject
Flags_SpecializedProject,
};
BfAtomComposite mName;