mirror of
https://github.com/mii443/wasmer.git
synced 2025-12-10 06:38:22 +00:00
6 lines
148 B
Rust
6 lines
148 B
Rust
macro_rules! emscripten_memory_pointer {
|
|
($memory:expr, $pointer:expr) => {
|
|
$memory.data_ptr().wrapping_add($pointer as usize)
|
|
};
|
|
}
|