summaryrefslogtreecommitdiffstats
path: root/osdep/terminal.h
diff options
context:
space:
mode:
authorKacper Michajłow <kasper93@gmail.com>2024-03-17 18:25:51 +0100
committerKacper Michajłow <kasper93@gmail.com>2024-03-19 19:58:09 +0100
commitfc55f355fc8225328cf0472e3deb4021eba96303 (patch)
tree652da918120e94e4d926d443e479034d3d8777f6 /osdep/terminal.h
parent3372e17d51b6ecab1695de9e41d26a9216a62a52 (diff)
downloadmpv-fc55f355fc8225328cf0472e3deb4021eba96303.tar.bz2
mpv-fc55f355fc8225328cf0472e3deb4021eba96303.tar.xz
win32: add puts/fputs wrappers
Diffstat (limited to 'osdep/terminal.h')
-rw-r--r--osdep/terminal.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/osdep/terminal.h b/osdep/terminal.h
index d3d0daa5db..9d60afa00a 100644
--- a/osdep/terminal.h
+++ b/osdep/terminal.h
@@ -54,7 +54,8 @@ void terminal_get_size(int *w, int *h);
void terminal_get_size2(int *rows, int *cols, int *px_width, int *px_height);
// Windows only.
-int mp_write_console_ansi(void *wstream, const char *format, va_list args);
+int mp_console_vfprintf(void *wstream, const char *format, va_list args);
+int mp_console_fputs(void *wstream, bstr str);
bool mp_check_console(void *handle);
/* Windows-only function to attach to the parent process's console */