()
| 655 | } |
| 656 | |
| 657 | fn context_get() -> *mut u8 { |
| 658 | extern_wasm! { |
| 659 | #[link(wasm_import_module = "$root")] |
| 660 | unsafe extern "C" { |
| 661 | #[link_name = "[context-get-0]"] |
| 662 | fn get() -> *mut u8; |
| 663 | } |
| 664 | } |
| 665 | |
| 666 | unsafe { get() } |
| 667 | } |
| 668 | |
| 669 | unsafe fn context_set(value: *mut u8) { |
| 670 | extern_wasm! { |