diff options
Diffstat (limited to 'src/wasm-binary-reader-interpreter.h')
-rw-r--r-- | src/wasm-binary-reader-interpreter.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/wasm-binary-reader-interpreter.h b/src/wasm-binary-reader-interpreter.h index bd701b92..2cb26652 100644 --- a/src/wasm-binary-reader-interpreter.h +++ b/src/wasm-binary-reader-interpreter.h @@ -20,6 +20,7 @@ #include "wasm-common.h" struct WasmAllocator; +struct WasmInterpreterEnvironment; struct WasmInterpreterModule; struct WasmReadBinaryOptions; @@ -27,11 +28,12 @@ WASM_EXTERN_C_BEGIN WasmResult wasm_read_binary_interpreter( struct WasmAllocator* allocator, struct WasmAllocator* memory_allocator, + struct WasmInterpreterEnvironment* env, const void* data, size_t size, const struct WasmReadBinaryOptions* options, WasmBinaryErrorHandler*, - struct WasmInterpreterModule* out_module); + struct WasmInterpreterModule** out_module); WASM_EXTERN_C_END #endif /* WASM_BINARY_READER_INTERPRETER_H_ */ |