napi_sym
A proc_macro for Deno's Node-API implementation. It does the following things:
- Marks the symbol as
#[no_mangle]and rewrites it asunsafe extern "C" $name. - Asserts that the function symbol is present in
symbol_exports.json. - Maps
deno_napi::Resultto rawnapi_result.
use Env;
use Error;
use Result;
use napi_value;
symbol_exports.json
A file containing the symbols that need to be put into the executable's dynamic symbol table at link-time.
This is done using /DEF: on Windows, -exported_symbol,_ on macOS and
--export-dynamic-symbol= on Linux. See cli/build.rs.
On Windows, you need to generate the .def file by running
tools/napi/generate_symbols_lists.js.