v/vlib/term/ui/input_windows.c.v

23 lines
394 B
V
Raw Normal View History

module ui
const (
not_implemented_yet = "term.input: error: Windows support isn't implemented yet"
)
pub fn init(cfg Config) &Context {
panic(not_implemented_yet)
return &Context{}
}
pub fn (mut ctx Context) run() {
panic(not_implemented_yet)
}
pub fn (mut ctx Context) save_title() {
panic(not_implemented_yet)
}
pub fn (mut ctx Context) load_title() {
panic(not_implemented_yet)
}