Add reflection list type

master
teknomunk 1 year ago
parent 4ccdf26579
commit 37d111960b

@ -10,11 +10,19 @@ struct reflection
int offset;
int type;
};
enum {
rl_fields = 1,
rl_procedures = 2,
};
struct reflection_list
{
int type;
struct reflection* items;
int count;
int stride; // This is the stride of the reflection data structure
struct reflection_list* next;
};
#define REFLECT_OFFSET \

Loading…
Cancel
Save