changeset 31381:21da5b5c9842

Move extern variable declarations for mp_fifo.c to mp_fifo.h.
author diego
date Thu, 17 Jun 2010 09:17:13 +0000
parents 1c540767767e
children f7b0ceac5aae
files cfg-mplayer.h mp_fifo.h
diffstat 2 files changed, 5 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/cfg-mplayer.h	Thu Jun 17 09:12:38 2010 +0000
+++ b/cfg-mplayer.h	Thu Jun 17 09:17:13 2010 +0000
@@ -29,9 +29,7 @@
 #include "libvo/aspect.h"
 #include "libvo/vo_fbdev.h"
 #include "libvo/vo_zr.h"
-
-extern int key_fifo_size;
-extern unsigned doubleclick_time;
+#include "mp_fifo.h"
 
 extern char *lirc_configfile;
 
--- a/mp_fifo.h	Thu Jun 17 09:12:38 2010 +0000
+++ b/mp_fifo.h	Thu Jun 17 09:17:13 2010 +0000
@@ -19,6 +19,10 @@
 #ifndef MPLAYER_MP_FIFO_H
 #define MPLAYER_MP_FIFO_H
 
+extern int key_fifo_size;
+extern unsigned doubleclick_time;
+
+
 int mplayer_get_key(int fd);
 void mplayer_put_key(int code);