From e27e245ffe2cd6da034e8bbf2703351b7738df57 Mon Sep 17 00:00:00 2001 From: faust3 Date: Mon, 22 Sep 2003 11:31:51 +0000 Subject: add a read function for slave mode on mingw git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10929 b3059339-0415-0410-9bf9-f77b7e298cf2 --- mplayer.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'mplayer.c') diff --git a/mplayer.c b/mplayer.c index 5dd2b8ad8a..93b3733211 100644 --- a/mplayer.c +++ b/mplayer.c @@ -13,6 +13,7 @@ #define SIGQUIT 3 /* quit */ #define SIGKILL 9 /* kill (cannot be caught or ignored) */ #define SIGBUS 10 /* bus error */ +extern int mp_input_win32_slave_cmd_func(int fd,char* dest,int size); #endif #include @@ -1121,7 +1122,11 @@ if(keyb_fifo_get > 0) mp_input_add_key_fd(-1,0,mplayer_get_key,NULL); #endif if(slave_mode) +#ifndef __MINGW32__ mp_input_add_cmd_fd(0,1,NULL,NULL); +#else + mp_input_add_cmd_fd(0,0,mp_input_win32_slave_cmd_func,NULL); +#endif else if(!use_stdin) #ifndef HAVE_NO_POSIX_SELECT mp_input_add_key_fd(0,1,NULL,NULL); -- cgit v1.2.3