mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2026-04-19 02:28:43 +00:00
And add asm code of em64/arm/mips version to call native wrapper functions; Fix some issues of calling wrapper functions;
19 lines
528 B
C
19 lines
528 B
C
#include "lib_export.h"
|
|
#include "sensor_api.h"
|
|
#include "connection_api.h"
|
|
#include "display_indev.h"
|
|
|
|
static NativeSymbol extended_native_symbol_defs[] = {
|
|
#include "runtime_sensor.inl"
|
|
#include "connection.inl"
|
|
EXPORT_WASM_API(display_init),
|
|
EXPORT_WASM_API(display_input_read),
|
|
EXPORT_WASM_API(display_flush),
|
|
EXPORT_WASM_API(display_fill),
|
|
EXPORT_WASM_API(display_vdb_write),
|
|
EXPORT_WASM_API(display_map),
|
|
EXPORT_WASM_API(time_get_ms)
|
|
};
|
|
|
|
#include "ext_lib_export.h"
|