wasm-posix-host
    Preparing search index...

    Interface LoadedSharedLibrary

    Shared library instance loaded into a process's address space.

    interface LoadedSharedLibrary {
        exports: Record<string, WebAssembly.ExportValue>;
        instance: Instance;
        memoryBase: number;
        metadata: DylinkMetadata;
        name: string;
        tableBase: number;
    }
    Index

    Properties

    exports: Record<string, WebAssembly.ExportValue>

    Exported symbols (functions and data addresses)

    instance: Instance

    Wasm module instance

    memoryBase: number

    Base address in linear memory where this library's data is placed

    metadata: DylinkMetadata

    Metadata from dylink.0

    name: string

    Path/name of the library

    tableBase: number

    Base index in the indirect function table