summaryrefslogtreecommitdiffstats
path: root/cfg-mplayer.h
diff options
context:
space:
mode:
authorszabii <szabii@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-03-19 01:49:44 +0000
committerszabii <szabii@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-03-19 01:49:44 +0000
commit05e521da6584589dfd6e6686108985abd928834a (patch)
tree727413d708eb12bb2545bc4b561d25f28ec6d79b /cfg-mplayer.h
parent767917c5149349b42e3d7628b67fe1cb38721808 (diff)
downloadmpv-05e521da6584589dfd6e6686108985abd928834a.tar.bz2
mpv-05e521da6584589dfd6e6686108985abd928834a.tar.xz
cfgparse fixes
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@151 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'cfg-mplayer.h')
-rw-r--r--cfg-mplayer.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/cfg-mplayer.h b/cfg-mplayer.h
index 10b367a59c..224a4cb5c4 100644
--- a/cfg-mplayer.h
+++ b/cfg-mplayer.h
@@ -2,6 +2,8 @@
* config for cfgparser
*/
+#include "cfg-mplayer-func.h"
+
struct config conf[]={
/* name, pointer, type, flags, min, max */
{"vo", &video_driver, CONF_TYPE_STRING, 0, 0, 0},
@@ -39,5 +41,7 @@ struct config conf[]={
{"idx", &no_index, CONF_TYPE_FLAG, 0, 1, 0},
{"noidx", &no_index, CONF_TYPE_FLAG, 0, 0, 1},
{"v", &verbose, CONF_TYPE_INT, 0, 0, 0},
+ {"-help", &cfg_func_help, CONF_TYPE_FUNC, CONF_NOCFG, 0, 0},
+ {"h", &cfg_func_help, CONF_TYPE_FUNC, CONF_NOCFG, 0, 0},
{NULL, NULL, 0, 0, 0, 0}
};