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
2019-09-11 15:56:47 +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 get_module_inst() and fix issue of call native (#120) 2019-09-11 15:56:47 +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 parameter module inst for native wrapper functions (#117) 2019-09-10 10:23:46 +08:00
timer_api.h Fix typo 'destory' and compile issue (#119) 2019-09-10 15:52:03 +08:00
wasm_export_api.h Remove get_module_inst() and fix issue of call native (#120) 2019-09-11 15:56:47 +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.