[MPlayer-cvslog] r26295 - in trunk: command.c parser-cfg.c parser-mpcmd.c
uau
subversion at mplayerhq.hu
Fri Mar 28 02:08:00 CET 2008
Author: uau
Date: Fri Mar 28 02:07:59 2008
New Revision: 26295
Log:
Include some .h files in corresponding .c files
Include the corresponding .h file in command.c, parser-cfg.c and
parser-mpcmd.c. This allows the compiler to check that the
declarations in the .h file match the actual defition.
Modified:
trunk/command.c
trunk/parser-cfg.c
trunk/parser-mpcmd.c
Modified: trunk/command.c
==============================================================================
--- trunk/command.c (original)
+++ trunk/command.c Fri Mar 28 02:07:59 2008
@@ -4,6 +4,7 @@
#include <string.h>
#include "config.h"
+#include "command.h"
#include "input/input.h"
#include "stream/stream.h"
#include "libmpdemux/demuxer.h"
Modified: trunk/parser-cfg.c
==============================================================================
--- trunk/parser-cfg.c (original)
+++ trunk/parser-cfg.c Fri Mar 28 02:07:59 2008
@@ -19,6 +19,7 @@
#include <assert.h>
#endif
+#include "parser-cfg.h"
#include "mp_msg.h"
#include "m_option.h"
#include "m_config.h"
Modified: trunk/parser-mpcmd.c
==============================================================================
--- trunk/parser-mpcmd.c (original)
+++ trunk/parser-mpcmd.c Fri Mar 28 02:07:59 2008
@@ -18,6 +18,7 @@
#include "m_option.h"
#include "m_config.h"
#include "playtree.h"
+#include "parser-mpcmd.h"
static int recursion_depth = 0;
static int mode = 0;
More information about the MPlayer-cvslog
mailing list