summaryrefslogtreecommitdiffstats
path: root/osdep/getch2-win.c
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-02-21 16:15:31 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-02-21 16:15:31 +0000
commit895fc255537eda5e9f7aef9119b22607dbc39eee (patch)
tree307b2276d3475caf843be0f7c3718dfb1ce6e4c4 /osdep/getch2-win.c
parent0a168fb8e0751c507fe2c84f50f11f71cda39f34 (diff)
downloadmpv-895fc255537eda5e9f7aef9119b22607dbc39eee.tar.bz2
mpv-895fc255537eda5e9f7aef9119b22607dbc39eee.tar.xz
Rename mp_input_win32_slave_cmd_func to mp_input_slave_cmd_func.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26047 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'osdep/getch2-win.c')
-rw-r--r--osdep/getch2-win.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/osdep/getch2-win.c b/osdep/getch2-win.c
index 260c7c3f76..03c3d42cbf 100644
--- a/osdep/getch2-win.c
+++ b/osdep/getch2-win.c
@@ -13,7 +13,7 @@
// HACK, stdin is used as something else below
#undef stdin
-int mp_input_win32_slave_cmd_func(int fd,char* dest,int size){
+int mp_input_slave_cmd_func(int fd,char* dest,int size){
DWORD retval;
HANDLE stdin = GetStdHandle(STD_INPUT_HANDLE);
if(!PeekNamedPipe(stdin, NULL, size, &retval, NULL, NULL) || !retval){