mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-13 01:21:38 -07:00
15 lines
247 B
Odin
15 lines
247 B
Odin
#+private
|
|
#+build js
|
|
package terminal
|
|
|
|
import "core:os"
|
|
|
|
_is_terminal :: proc "contextless" (handle: os.Handle) -> bool {
|
|
return true
|
|
}
|
|
|
|
_init_terminal :: proc "contextless" () {
|
|
color_depth = .None
|
|
}
|
|
|
|
_fini_terminal :: proc "contextless" () { } |