mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-15 18:32:22 -07:00
12 lines
279 B
Odin
12 lines
279 B
Odin
//+build js wasm32, js wasm64p32
|
|
package wasm_js_interface
|
|
|
|
foreign import "odin_env"
|
|
|
|
@(default_calling_convention="contextless")
|
|
foreign odin_env {
|
|
trap :: proc() -> ! ---
|
|
abort :: proc() -> ! ---
|
|
alert :: proc(msg: string) ---
|
|
evaluate :: proc(str: string) ---
|
|
} |