summaryrefslogtreecommitdiffstats
path: root/osdep/getch2-win.c
diff options
context:
space:
mode:
authorDiogo Franco (Kovensky) <diogomfranco@gmail.com>2013-07-25 12:25:31 -0300
committerDiogo Franco (Kovensky) <diogomfranco@gmail.com>2013-07-25 12:25:31 -0300
commit1aa0ad2725d4421b007db0e604e7f7a624069925 (patch)
treed88d46392a345817e606c28d989707a402be2bd9 /osdep/getch2-win.c
parent2c07cb00360cb962d0bb543ce59ea028aa9e4e76 (diff)
parent1df1eb0b613d952bcb23c8e035bfc730fb71bd56 (diff)
downloadmpv-1aa0ad2725d4421b007db0e604e7f7a624069925.tar.bz2
mpv-1aa0ad2725d4421b007db0e604e7f7a624069925.tar.xz
Merge branch 'getch2/refactor'
* getch2/refactor: configure: Fix bad variable assignment getch2, mplayer: Always call load_termcap getch2: Remove unused function, fix possible crash getch2: Refactor/rewrite
Diffstat (limited to 'osdep/getch2-win.c')
-rw-r--r--osdep/getch2-win.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/osdep/getch2-win.c b/osdep/getch2-win.c
index 0750f95c78..558876ff62 100644
--- a/osdep/getch2-win.c
+++ b/osdep/getch2-win.c
@@ -64,6 +64,11 @@ void get_screen_size(void)
}
}
+int load_termcap(char *termtype)
+{
+ return 0;
+}
+
static HANDLE in;
static int getch2_status = 0;