mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-07-15 22:11:28 -07:00
further work on expanding main watch path to support various string styling/visualizing mechanisms, used ad-hoc before; more work on scheduler
This commit is contained in:
@@ -463,6 +463,10 @@ e_type_key_cons_base(Type *type)
|
||||
{
|
||||
flags |= E_TypeFlag_IsCode;
|
||||
}
|
||||
if(type->flags & TypeFlag_IsPath)
|
||||
{
|
||||
flags |= E_TypeFlag_IsPath;
|
||||
}
|
||||
result = e_type_key_cons_ptr(arch_from_context(), direct_type, flags);
|
||||
}break;
|
||||
case TypeKind_Array:
|
||||
|
||||
@@ -70,6 +70,7 @@ enum
|
||||
E_TypeFlag_Volatile = (1<<1),
|
||||
E_TypeFlag_External = (1<<2),
|
||||
E_TypeFlag_IsCode = (1<<3),
|
||||
E_TypeFlag_IsPath = (1<<4),
|
||||
};
|
||||
|
||||
typedef struct E_Member E_Member;
|
||||
|
||||
Reference in New Issue
Block a user