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
wenyongh de81b95ab8 Enable native/app address validation and conversion for wasm app (#102)
Enable setting external memory space for wasm app, the feature is disabled by default;
Remove wasm_application_exectue_* APIs from wasm_export.h which makes confused.
2019-08-21 16:39:50 +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 a new extension library: connection (#39) 2019-06-10 21:52:15 -05:00
gui_api.h Implement 2D graphic API (#87) 2019-08-01 16:57:54 +08:00
native_interface.cmake WebAssembly Micro Runtime first version 2019-05-07 10:18:18 +08:00
native_interface.h Implement 2D graphic API (#87) 2019-08-01 16:57:54 +08:00
readme.txt WebAssembly Micro Runtime first version 2019-05-07 10:18:18 +08:00
restful_utils.c Import app manager, samples and test-tools 2019-05-17 17:15:25 +08:00
sensor_api.h WebAssembly Micro Runtime first version 2019-05-07 10:18:18 +08:00
shared_utils.h Implement 2D graphic API (#87) 2019-08-01 16:57:54 +08:00
wasm_export.h Enable native/app address validation and conversion for wasm app (#102) 2019-08-21 16:39:50 +08:00
wgl_shared_utils.h Implement 2D graphic API (#87) 2019-08-01 16:57:54 +08:00

Attention: 
=======
Only add files 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.