2023-05-08 13:21:31 +00:00
|
|
|
//go:build wasi
|
|
|
|
|
|
|
|
package sdk
|
|
|
|
|
|
|
|
//go:wasm-module buildr
|
2023-06-29 19:55:40 +00:00
|
|
|
//go:wasmimport buildr log_msg
|
2023-09-05 20:06:42 +00:00
|
|
|
func _log_msg(ptr, size uint32) (ptrSize uint64)
|
2023-05-08 13:21:31 +00:00
|
|
|
|
|
|
|
//go:wasm-module buildr
|
2023-06-29 19:55:40 +00:00
|
|
|
//go:wasmimport buildr 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 19:55:40 +00:00
|
|
|
//go:wasmimport buildr set_state
|
2023-05-08 13:21:31 +00:00
|
|
|
func _set_state(ptr, size uint32) (ptrSize uint64)
|