refactor meta tables
This commit is contained in:
@@ -1,17 +1,17 @@
|
||||
typedef struct cg_tweak_t cg_tweak_t;
|
||||
struct cg_tweak_t {
|
||||
cg_tweak_t *next;
|
||||
type_t *type;
|
||||
s8_t name;
|
||||
s8_t value;
|
||||
s8_t min, max;
|
||||
};
|
||||
|
||||
void mt_wasm_app(ma_arena_t *arena) {
|
||||
sb8_t *include_paths = sb8(arena);
|
||||
sb8_append(include_paths, OS_GetAbsolutePath(&Perm, s8_lit("../src")));
|
||||
mt_files_t files = mt_lex_files(arena, s8_lit("../src/wasm_app/main.c"), include_paths);
|
||||
|
||||
typedef struct cg_tweak_t cg_tweak_t;
|
||||
struct cg_tweak_t {
|
||||
cg_tweak_t *next;
|
||||
type_t *type;
|
||||
s8_t name;
|
||||
s8_t value;
|
||||
s8_t min, max;
|
||||
};
|
||||
|
||||
cg_tweak_t *first_tweak = NULL;
|
||||
cg_tweak_t *last_tweak = NULL;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user