Local types information and manipulation helpers
// Enum type information
class enum_type_data_t
{
// tattr_enum, see TAENUM_... flags
attribute taenum_bits;
// enum member sizes (shift amount) and style, see BTE_... constants
attribute bte;
// number of enum members
attribute member_cnt;
// add enum constant
success add_constant(string name, string name, uint64 value, string comment=nullptr);
};Last updated
Was this helpful?
