blob: 5a01e5b7d1f45e37e6d414cf8c4c9e67ca40b89c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
#include "terminal.h"
#include "misc/bstr.h"
void terminal_init(void)
{
}
void terminal_setup_getch(struct input_ctx *ictx)
{
}
void terminal_uninit(void)
{
}
bool terminal_in_background(void)
{
return false;
}
void terminal_get_size(int *w, int *h)
{
}
void terminal_get_size2(int *rows, int *cols, int *px_width, int *px_height)
{
}
PRINTF_ATTRIBUTE(2, 0)
int mp_console_vfprintf(void *wstream, const char *format, va_list args)
{
return 0;
}
int mp_console_write(void *wstream, bstr str)
{
return 0;
}
bool terminal_try_attach(void)
{
return false;
}
void terminal_set_mouse_input(bool enable)
{
}
|