Rename getch2....c/h to terminal....c/h

"getch2" really tells nothing about what the heck this code does. It'd
be even worse when moving the rest of terminal handling code there.
This commit is contained in:
wm4
2013-12-19 21:31:27 +01:00
parent 8c7ea10873
commit 25d4ae74f1
11 changed files with 16 additions and 19 deletions

View File

@@ -45,7 +45,7 @@
#include "bstr/bstr.h"
#include "input/input.h"
#include "input/keycodes.h"
#include "getch2.h"
#include "terminal.h"
#if HAVE_TERMIOS
static volatile struct termios tio_orig;

View File

@@ -30,7 +30,7 @@
#include <windows.h>
#include "input/keycodes.h"
#include "input/input.h"
#include "getch2.h"
#include "terminal.h"
int mp_input_slave_cmd_func(int fd, char *dest, int size)
{

View File