2023-05-08 13:21:31 +00:00
|
|
|
//go:build wasi
|
|
|
|
|
|
|
|
package sdk
|
|
|
|
|
|
|
|
//go:wasm-module buildr
|
2023-06-29 18:27:27 +00:00
|
|
|
//go:wasmimport log_msg
|
2023-05-08 13:21:31 +00:00
|
|
|
func _log_msg(ptr, size uint32)
|
|
|
|
|
|
|
|
//go:wasm-module buildr
|
2023-06-29 18:27:27 +00:00
|
|
|
//go:wasmimport get_state
|
2023-05-08 13:21:31 +00:00
|
|
|
func _get_state(ptr, size uint32) (ptrSize uint64)
|
|
|
|
|
|
|
|
//go:wasm-module buildr
|
2023-06-29 18:27:27 +00:00
|
|
|
//go:wasmimport set_state
|
2023-05-08 13:21:31 +00:00
|
|
|
func _set_state(ptr, size uint32) (ptrSize uint64)
|