#[no_mangle]
pub extern "C" fn wasmer_features_memory64(
    features: Option<&mut wasmer_features_t>,
    enable: bool
) -> bool
Expand description

Configures whether the WebAssembly 64-bit memory proposal will be enabled.

The WebAssembly 64-bit memory proposal is not currently fully standardized and is undergoing development. Support for this feature can be enabled through this method for appropriate WebAssembly modules.

This feature gates support for linear memory of sizes larger than 2^32 bits.

This is false by default.

Example

See the module’s documentation.