This repository has been archived on 2023-11-05. You can view files and clone it, but cannot push or open issues or pull requests.
wasm-micro-runtime/core/iwasm/lib/native-interface
Weining 2a8b1ef454 Remove the binding between current thread and module instance and bugs fix (#131)
Remove wasm_export_api.h that may confuse
Implement wasm_runtime_validate_app_str_addr()
Fix bugs of loader and pass more spec cases

Signed-off-by: Weining Lu <weining.x.lu@intel.com>
2019-10-11 15:25:23 +08:00
..
attr_container.c Import app manager, samples and test-tools 2019-05-17 17:15:25 +08:00
attr_container.h Import app manager, samples and test-tools 2019-05-17 17:15:25 +08:00
connection_api.h Add parameter module inst for native wrapper functions (#117) 2019-09-10 10:23:46 +08:00
gui_api.h Add parameter module inst for native wrapper functions (#117) 2019-09-10 10:23:46 +08:00
native_interface.cmake WebAssembly Micro Runtime first version 2019-05-07 10:18:18 +08:00
native_interface.h Remove the binding between current thread and module instance and bugs fix (#131) 2019-10-11 15:25:23 +08:00
readme.txt Add parameter module inst for native wrapper functions (#117) 2019-09-10 10:23:46 +08:00
req_resp_api.h Add parameter module inst for native wrapper functions (#117) 2019-09-10 10:23:46 +08:00
restful_utils.c Add parameter module inst for native wrapper functions (#117) 2019-09-10 10:23:46 +08:00
sensor_api.h Add parameter module inst for native wrapper functions (#117) 2019-09-10 10:23:46 +08:00
shared_utils.h Add a switch to build simple sample without gui support (#126) 2019-09-25 03:42:56 -05:00
timer_api.h Fix typo 'destory' and compile issue (#119) 2019-09-10 15:52:03 +08:00
wgl_shared_utils.h Implement 2D graphic API (#87) 2019-08-01 16:57:54 +08:00

Attention: 
=======
Only add files which are shared by both wasm application and native runtime into this directory!

The c files are both compiled into the the WASM APP and native runtime.

native_interface.h
=============
The interface declaration for the native API which are exposed to the WASM app

Any API in this file should be incuded with EXPORT_WASM_API() somewhere.