diff options
author | Ben Smith <binjimin@gmail.com> | 2017-01-31 17:16:19 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-31 17:16:19 -0800 |
commit | 4fdbb4647c519a42f3e54ed7a858194780ca2ae4 (patch) | |
tree | 3aebad7746c492930c32786061c655bb017fdc81 /src/binary-reader-interpreter.h | |
parent | edb3a471bc249855d5ece45dc21ee69af700b19b (diff) | |
download | wabt-4fdbb4647c519a42f3e54ed7a858194780ca2ae4.tar.gz wabt-4fdbb4647c519a42f3e54ed7a858194780ca2ae4.tar.bz2 wabt-4fdbb4647c519a42f3e54ed7a858194780ca2ae4.zip |
Rename all wasm prefixes to wabt (#298)
Diffstat (limited to 'src/binary-reader-interpreter.h')
-rw-r--r-- | src/binary-reader-interpreter.h | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/src/binary-reader-interpreter.h b/src/binary-reader-interpreter.h index 090667c1..4f1b9c14 100644 --- a/src/binary-reader-interpreter.h +++ b/src/binary-reader-interpreter.h @@ -14,26 +14,26 @@ * limitations under the License. */ -#ifndef WASM_BINARY_READER_INTERPRETER_H_ -#define WASM_BINARY_READER_INTERPRETER_H_ +#ifndef WABT_BINARY_READER_INTERPRETER_H_ +#define WABT_BINARY_READER_INTERPRETER_H_ #include "common.h" -struct WasmAllocator; -struct WasmInterpreterEnvironment; -struct WasmInterpreterModule; -struct WasmReadBinaryOptions; +struct WabtAllocator; +struct WabtInterpreterEnvironment; +struct WabtInterpreterModule; +struct WabtReadBinaryOptions; -WASM_EXTERN_C_BEGIN -WasmResult wasm_read_binary_interpreter( - struct WasmAllocator* allocator, - struct WasmAllocator* memory_allocator, - struct WasmInterpreterEnvironment* env, +WABT_EXTERN_C_BEGIN +WabtResult wabt_read_binary_interpreter( + struct WabtAllocator* allocator, + struct WabtAllocator* memory_allocator, + struct WabtInterpreterEnvironment* env, const void* data, size_t size, - const struct WasmReadBinaryOptions* options, - WasmBinaryErrorHandler*, - struct WasmInterpreterModule** out_module); -WASM_EXTERN_C_END + const struct WabtReadBinaryOptions* options, + WabtBinaryErrorHandler*, + struct WabtInterpreterModule** out_module); +WABT_EXTERN_C_END -#endif /* WASM_BINARY_READER_INTERPRETER_H_ */ +#endif /* WABT_BINARY_READER_INTERPRETER_H_ */ |