aboutsummaryrefslogtreecommitdiffstats
path: root/bruiser/wasm.h
diff options
context:
space:
mode:
authorbloodstalker <thabogre@gmail.com>2018-06-04 00:13:03 +0000
committerbloodstalker <thabogre@gmail.com>2018-06-04 00:13:03 +0000
commitefae8398853d1494a17351f855e261867922ba44 (patch)
tree049d49c9f8a4fa58b42d36804035de6f6e82c39b /bruiser/wasm.h
parentfixed a bug with default.lua. added the blueprint for the wasm interface to b... (diff)
downloadmutator-efae8398853d1494a17351f855e261867922ba44.tar.gz
mutator-efae8398853d1494a17351f855e261867922ba44.zip
fixes #40
Diffstat (limited to 'bruiser/wasm.h')
-rw-r--r--bruiser/wasm.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/bruiser/wasm.h b/bruiser/wasm.h
index af02a20..ec68553 100644
--- a/bruiser/wasm.h
+++ b/bruiser/wasm.h
@@ -192,16 +192,16 @@ typedef int32_t varuint32;
#endif
typedef struct Wasm_Module {
- W_Import_Section import_section;
- W_Function_Section function_section;
- W_Table_Section table_section;
- W_Memory_Section memory_section;
- W_Global_Section global_section;
- W_Export_Section export_section;
- W_Start_Section start_section;
- W_Element_Section element_section;
- W_Code_Section code_section;
- W_Data_Section data_section;
+ W_Import_Section* import_section;
+ W_Function_Section* function_section;
+ W_Table_Section* table_section;
+ W_Memory_Section* memory_section;
+ W_Global_Section* global_section;
+ W_Export_Section* export_section;
+ W_Start_Section* start_section;
+ W_Element_Section* element_section;
+ W_Code_Section* code_section;
+ W_Data_Section* data_section;
void** W_Custom_Sections;
char* name;
}Wasm_Module;