Files
Odin/core/runtime/procs_js.odin
2023-06-07 00:12:54 +01:00

16 lines
309 B
Odin

//+build js
package runtime
init_default_context_for_js: Context
@(init, private="file")
init_default_context :: proc() {
init_default_context_for_js = context
}
@(export)
@(link_name="default_context_ptr")
default_context_ptr :: proc "contextless" () -> ^Context {
return &init_default_context_for_js
}