Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
dlopen 返回的加載庫實例
Library
import { dlopen, FFIType } from 'arkffi'; const lib = dlopen('libffi_target.so', { add: { args: [FFIType.double, FFIType.double], returns: FFIType.double }, }); lib.symbols.add(2.0, 3.0); lib.close();
symbols
readonly symbols: ConvertFns<Fns>;
defs
lib.symbols.add(2.0, 3.0); lib.symbols.compute(0, 4.0, 'square');
close()
close(): void;
dlclose()
lib.close(); lib.close(); // 多次調用安全
這個頁面有幫助嗎?