Files
Odin/core/terminal/terminal_js.odin
2026-07-30 11:46:06 +02:00

14 lines
243 B
Odin

#+private
#+build js
package terminal
_is_terminal :: proc "contextless" (handle: any) -> bool {
return true
}
_init_terminal :: proc "contextless" () {
color_depth = .None
is_dumb = true
}
_fini_terminal :: proc "contextless" () { }