aboutsummaryrefslogtreecommitdiff
path: root/core/terminal/terminal_js.odin
blob: 78c6c240fa657929f5ffd7792b41d60767dd587e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#+private
#+build js
package terminal

_is_terminal :: proc "contextless" (handle: any) -> bool {
	return true
}

_init_terminal :: proc "contextless" () {
	color_depth = .None
}

_fini_terminal :: proc "contextless" () { }