| 754 | } |
| 755 | |
| 756 | void wasm_module_serialize(const wasm_module_t* module, wasm_byte_vec_t* out) { |
| 757 | *out = release_byte_vec(reveal_module(module)->serialize()); |
| 758 | } |
| 759 | |
| 760 | wasm_module_t* wasm_module_deserialize( |
| 761 | wasm_store_t* store, const wasm_byte_vec_t* binary |