summaryrefslogtreecommitdiffstats
path: root/cfg-mplayer.h
diff options
context:
space:
mode:
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}
};