mirror of
https://github.com/odin-lang/Odin.git
synced 2026-08-23 13:31:35 +00:00
14 lines
243 B
Odin
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" () { } |