avoid conflicting types error on cygwin
[mplayer.git] / cfg-mplayer.h
blobdef74a24b9c8cd0ce820bf769b4a33996bd691db
1 /*
2 * config for cfgparser
3 */
5 #include "cfg-common.h"
7 extern int noconsolecontrols;
9 #if defined(HAVE_FBDEV)||defined(HAVE_VESA)
10 extern char *monitor_hfreq_str;
11 extern char *monitor_vfreq_str;
12 extern char *monitor_dotclock_str;
13 #endif
15 #ifdef HAVE_FBDEV
16 extern char *fb_mode_cfgfile;
17 extern char *fb_mode_name;
18 #endif
19 #ifdef HAVE_DIRECTFB
20 #if DIRECTFBVERSION > 912
21 extern char *dfb_params;
22 #endif
23 #endif
24 #ifdef USE_FAKE_MONO
25 extern int fakemono; // defined in dec_audio.c
26 #endif
28 extern int volstep;
30 #ifdef HAVE_LIRC
31 extern char *lirc_configfile;
32 #endif
34 extern int vo_doublebuffering;
35 extern int vo_vsync;
36 extern int vo_fsmode;
37 extern int vo_dbpp;
38 extern int vo_directrendering;
39 extern float vo_panscan;
40 extern float vo_panscanrange;
41 /* only used at startup (setting these values from configfile) */
42 extern int vo_gamma_brightness;
43 extern int vo_gamma_saturation;
44 extern int vo_gamma_contrast;
45 extern int vo_gamma_hue;
46 extern char *vo_geometry;
47 extern int vo_ontop;
48 extern int vo_border;
49 extern int vo_keepaspect;
50 extern int vo_rootwin;
52 extern int opt_screen_size_x;
53 extern int opt_screen_size_y;
54 extern int fullscreen;
55 extern int vidmode;
57 #ifdef USE_OSD
58 extern int osd_level;
59 #endif
61 extern char *ao_outputfilename;
62 extern int ao_pcm_waveheader;
64 #ifdef HAVE_X11
65 extern char *mDisplayName;
66 extern int fs_layer;
67 extern int stop_xscreensaver;
68 extern char **vo_fstype_list;
69 extern int vo_nomouse_input;
70 #endif
71 extern int WinID;
73 #ifdef HAVE_MENU
74 extern int menu_startup;
75 #endif
77 #ifdef HAVE_ZR
78 extern int vo_zr_parseoption(m_option_t* conf, char *opt, char * param);
79 extern void vo_zr_revertoption(m_option_t* opt,char* pram);
80 #endif
82 #ifdef HAVE_DXR2
83 extern m_option_t dxr2_opts[];
84 #endif
86 #ifdef STREAMING_LIVE555
87 extern int isSDPFile;
88 extern int rtspStreamOverTCP;
89 #endif
91 #ifdef HAVE_NEW_GUI
92 extern char * skinName;
93 extern int enqueue;
94 extern int guiWinID;
95 #endif
97 #ifdef HAVE_ODIVX_POSTPROCESS
98 extern int use_old_pp;
99 #endif
101 #ifdef HAVE_XINERAMA
102 extern int xinerama_screen;
103 #endif
105 #ifdef HAVE_RTC
106 extern int nortc;
107 #endif
109 /* from libvo/aspect.c */
110 extern float monitor_aspect;
112 extern int sws_flags;
113 extern int readPPOpt(void *conf, char *arg);
114 extern void revertPPOpt(void *conf, char* opt);
115 extern char* pp_help;
117 m_option_t vd_conf[]={
118 {"help", "Use MPlayer with an appropriate video file instead of live partners to avoid vd.\n", CONF_TYPE_PRINT, CONF_NOCFG|CONF_GLOBAL, 0, 0, NULL},
119 {NULL, NULL, 0, 0, 0, 0, NULL}
123 * CONF_TYPE_FUNC_FULL :
124 * allows own implementations for passing the params
126 * the function receives parameter name and argument (if it does not start with - )
127 * useful with a conf.name like 'aa*' to parse several parameters to a function
128 * return 0 =ok, but we didn't need the param (could be the filename)
129 * return 1 =ok, we accepted the param
130 * negative values: see cfgparser.h, ERR_XXX
132 * by Folke
135 m_option_t mplayer_opts[]={
136 /* name, pointer, type, flags, min, max */
138 //---------------------- libao/libvo options ------------------------
139 {"o", "Option -o has been renamed to -vo (video-out), use -vo.\n",
140 CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
141 {"vo", &video_driver_list, CONF_TYPE_STRING_LIST, 0, 0, 0, NULL},
142 {"ao", &audio_driver_list, CONF_TYPE_STRING_LIST, 0, 0, 0, NULL},
143 {"fixed-vo", &fixed_vo, CONF_TYPE_FLAG,CONF_GLOBAL , 0, 1, NULL},
144 {"nofixed-vo", &fixed_vo, CONF_TYPE_FLAG,CONF_GLOBAL, 0, 0, NULL},
145 {"ontop", &vo_ontop, CONF_TYPE_FLAG, 0, 0, 1, NULL},
146 {"noontop", &vo_ontop, CONF_TYPE_FLAG, 0, 1, 0, NULL},
147 {"rootwin", &vo_rootwin, CONF_TYPE_FLAG, 0, 0, 1, NULL},
148 {"border", &vo_border, CONF_TYPE_FLAG, 0, 0, 1, NULL},
149 {"noborder", &vo_border, CONF_TYPE_FLAG, 0, 1, 0, NULL},
151 {"aop", "-aop is deprecated, use -af instead.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
152 {"dsp", "Use -ao oss:dsp_path.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
153 {"mixer", &mixer_device, CONF_TYPE_STRING, 0, 0, 0, NULL},
154 {"mixer-channel", &mixer_channel, CONF_TYPE_STRING, 0, 0, 0, NULL},
155 {"softvol", &soft_vol, CONF_TYPE_FLAG, 0, 0, 1, NULL},
156 {"nosoftvol", &soft_vol, CONF_TYPE_FLAG, 0, 1, 0, NULL},
157 {"softvol-max", &soft_vol_max, CONF_TYPE_FLOAT, CONF_RANGE, 10, 10000, NULL},
158 {"volstep", &volstep, CONF_TYPE_INT, CONF_RANGE, 0, 100, NULL},
159 {"master", "Option -master has been removed, use -af volume instead.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL},
160 // override audio buffer size (used only by -ao oss, anyway obsolete...)
161 {"abs", &ao_data.buffersize, CONF_TYPE_INT, CONF_MIN, 0, 0, NULL},
163 // -ao pcm options:
164 {"aofile", "-aofile is deprecated. Use -ao pcm:file=<filename> instead.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL},
165 {"waveheader", "-waveheader is deprecated. Use -ao pcm:waveheader instead.\n", CONF_TYPE_PRINT, 0, 0, 1, NULL},
166 {"nowaveheader", "-nowaveheader is deprecated. Use -ao pcm:nowaveheader instead.\n", CONF_TYPE_PRINT, 0, 1, 0, NULL},
168 {"alsa", "-alsa has been removed. Remove it from your config file.\n",
169 CONF_TYPE_PRINT, 0, 0, 0, NULL},
170 {"noalsa", "-noalsa has been removed. Remove it from your config file.\n",
171 CONF_TYPE_PRINT, 0, 0, 0, NULL},
172 #ifdef USE_EDL
173 {"edlout", &edl_output_filename, CONF_TYPE_STRING, 0, 0, 0, NULL},
174 #else
175 {"edlout", "MPlayer was compiled without EDL support.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL},
176 #endif
178 #ifdef HAVE_X11
179 {"display", &mDisplayName, CONF_TYPE_STRING, 0, 0, 0, NULL},
180 #endif
182 // -vo png only:
183 #ifdef HAVE_PNG
184 {"z", "-z is replaced by -vo png:z=<0-9>\n", CONF_TYPE_PRINT, 0, 0, 0, NULL},
185 #endif
186 // -vo jpeg only:
187 #ifdef HAVE_JPEG
188 {"jpeg", "-jpeg is deprecated. Use -vo jpeg:options instead.\n",
189 CONF_TYPE_PRINT, 0, 0, 0, NULL},
190 #endif
191 // -vo sdl only:
192 {"sdl", "Use -vo sdl:driver=<driver> instead of -vo sdl -sdl driver.\n",
193 CONF_TYPE_PRINT, 0, 0, 0, NULL},
194 {"noxv", "-noxv is deprecated. Use -vo sdl:nohwaccel instead.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL},
195 {"forcexv", "-forcexv is deprecated. Use -vo sdl:forcexv instead.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL},
196 // -ao sdl only:
197 {"sdla", "Use -ao sdl:driver instead of -ao sdl -sdla driver.\n",
198 CONF_TYPE_PRINT, 0, 0, 0, NULL},
200 #if defined(HAVE_FBDEV)||defined(HAVE_VESA)
201 {"monitor-hfreq", &monitor_hfreq_str, CONF_TYPE_STRING, 0, 0, 0, NULL},
202 {"monitor-vfreq", &monitor_vfreq_str, CONF_TYPE_STRING, 0, 0, 0, NULL},
203 {"monitor-dotclock", &monitor_dotclock_str, CONF_TYPE_STRING, 0, 0, 0, NULL},
204 #endif
206 #ifdef HAVE_FBDEV
207 {"fbmode", &fb_mode_name, CONF_TYPE_STRING, 0, 0, 0, NULL},
208 {"fbmodeconfig", &fb_mode_cfgfile, CONF_TYPE_STRING, 0, 0, 0, NULL},
209 #endif
210 #ifdef HAVE_DIRECTFB
211 #if DIRECTFBVERSION > 912
212 {"dfbopts", "-dfbopts is deprecated, use -vf directfb:dfbopts=... instead\n", CONF_TYPE_PRINT, 0, 0, 0, NULL},
213 #endif
214 #endif
216 // force window width/height or resolution (with -vm)
217 {"x", &opt_screen_size_x, CONF_TYPE_INT, CONF_RANGE, 0, 4096, NULL},
218 {"y", &opt_screen_size_y, CONF_TYPE_INT, CONF_RANGE, 0, 4096, NULL},
219 // set screen dimensions (when not detectable or virtual!=visible)
220 {"screenw", &vo_screenwidth, CONF_TYPE_INT, CONF_RANGE|CONF_OLD, 0, 4096, NULL},
221 {"screenh", &vo_screenheight, CONF_TYPE_INT, CONF_RANGE|CONF_OLD, 0, 4096, NULL},
222 // Geometry string
223 {"geometry", &vo_geometry, CONF_TYPE_STRING, 0, 0, 0, NULL},
224 // set aspect ratio of monitor - useful for 16:9 TVout
225 {"monitoraspect", &monitor_aspect, CONF_TYPE_FLOAT, CONF_RANGE, 0.2, 9.0, NULL},
226 // video mode switching: (x11,xv,dga)
227 {"vm", &vidmode, CONF_TYPE_FLAG, 0, 0, 1, NULL},
228 {"novm", &vidmode, CONF_TYPE_FLAG, 0, 1, 0, NULL},
229 // start in fullscreen mode:
230 {"fs", &fullscreen, CONF_TYPE_FLAG, 0, 0, 1, NULL},
231 {"nofs", &fullscreen, CONF_TYPE_FLAG, 0, 1, 0, NULL},
232 // set fullscreen switch method (workaround for buggy WMs)
233 {"fsmode", "-fsmode is obsolete, avoid it and use -fstype instead.\nIf you really want it, try -fsmode-dontuse, but don't report bugs!\n", CONF_TYPE_PRINT, CONF_RANGE, 0, 31, NULL},
234 {"fsmode-dontuse", &vo_fsmode, CONF_TYPE_INT, CONF_RANGE, 0, 31, NULL},
235 // set bpp (x11+vm, dga, fbdev, vesa, svga?)
236 {"bpp", &vo_dbpp, CONF_TYPE_INT, CONF_RANGE, 0, 32, NULL},
237 {"colorkey", &vo_colorkey, CONF_TYPE_INT, 0, 0, 0, NULL},
238 {"nocolorkey", &vo_colorkey, CONF_TYPE_FLAG, 0, 0, 0x1000000, NULL},
239 // double buffering: (mga/xmga, xv, vidix, vesa, fbdev)
240 {"double", &vo_doublebuffering, CONF_TYPE_FLAG, 0, 0, 1, NULL},
241 {"nodouble", &vo_doublebuffering, CONF_TYPE_FLAG, 0, 1, 0, NULL},
242 // wait for v-sync (vesa)
243 {"vsync", &vo_vsync, CONF_TYPE_FLAG, 0, 0, 1, NULL},
244 {"novsync", &vo_vsync, CONF_TYPE_FLAG, 0, 1, 0, NULL},
245 {"panscan", &vo_panscan, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 1.0, NULL},
246 {"panscanrange", &vo_panscanrange, CONF_TYPE_FLOAT, CONF_RANGE, -19.0, 99.0, NULL},
248 {"grabpointer", &vo_grabpointer, CONF_TYPE_FLAG, 0, 0, 1, NULL},
249 {"nograbpointer", &vo_grabpointer, CONF_TYPE_FLAG, 0, 1, 0, NULL},
251 {"adapter", &vo_adapter_num, CONF_TYPE_INT, CONF_RANGE, 0, 5, NULL},
252 {"refreshrate",&vo_refresh_rate,CONF_TYPE_INT,CONF_RANGE, 0,100, NULL},
253 {"wid", &WinID, CONF_TYPE_INT, 0, 0, 0, NULL},
254 #ifdef HAVE_X11
255 // x11,xv,xmga,xvidix
256 {"icelayer", "-icelayer is obsolete. Use -fstype layer:<number> instead.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL},
257 {"stop-xscreensaver", &stop_xscreensaver, CONF_TYPE_FLAG, 0, 0, 1, NULL},
258 {"nostop-xscreensaver", &stop_xscreensaver, CONF_TYPE_FLAG, 0, 1, 0, NULL},
259 {"stop_xscreensaver", "Use -stop-xscreensaver instead, options with _ have been obsoleted.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL},
260 {"fstype", &vo_fstype_list, CONF_TYPE_STRING_LIST, 0, 0, 0, NULL},
261 {"nomouseinput", &vo_nomouse_input, CONF_TYPE_FLAG,0,0,-1,NULL},
262 #endif
264 #ifdef HAVE_XINERAMA
265 {"xineramascreen", &xinerama_screen, CONF_TYPE_INT, CONF_RANGE, 0, 32, NULL},
266 #endif
268 {"brightness",&vo_gamma_brightness, CONF_TYPE_INT, CONF_RANGE, -100, 100, NULL},
269 {"saturation",&vo_gamma_saturation, CONF_TYPE_INT, CONF_RANGE, -100, 100, NULL},
270 {"contrast",&vo_gamma_contrast, CONF_TYPE_INT, CONF_RANGE, -100, 100, NULL},
271 {"hue",&vo_gamma_hue, CONF_TYPE_INT, CONF_RANGE, -100, 100, NULL},
272 {"keepaspect", &vo_keepaspect, CONF_TYPE_FLAG, 0, 0, 1, NULL},
273 {"nokeepaspect", &vo_keepaspect, CONF_TYPE_FLAG, 0, 1, 0, NULL},
275 // direct rendering (decoding to video out buffer)
276 {"dr", &vo_directrendering, CONF_TYPE_FLAG, 0, 0, 1, NULL},
277 {"nodr", &vo_directrendering, CONF_TYPE_FLAG, 0, 1, 0, NULL},
278 {"vaa_dr", "-vaa_dr is obsolete, use -dr.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL},
279 {"vaa_nodr", "-vaa_nodr is obsolete, use -nodr.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL},
281 #ifdef HAVE_AA
282 // -vo aa
283 {"aa*", "-aa* is deprecated. Use -vo aa:suboption instead.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL},
284 #endif
286 #ifdef HAVE_ZR
287 // -vo zr
288 {"zr*", vo_zr_parseoption, CONF_TYPE_FUNC_FULL, 0, 0, 0, &vo_zr_revertoption },
289 #endif
291 #ifdef HAVE_DXR2
292 {"dxr2", &dxr2_opts, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL},
293 #endif
295 #ifdef STREAMING_LIVE555
296 {"sdp", "-sdp is obsolete, use sdp://file instead.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL},
297 // -rtsp-stream-over-tcp option, specifying TCP streaming of RTP/RTCP
298 {"rtsp-stream-over-tcp", &rtspStreamOverTCP, CONF_TYPE_FLAG, 0, 0, 1, NULL},
299 #else
300 {"rtsp-stream-over-tcp", "RTSP support requires the \"LIVE555 Streaming Media\" libraries.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
301 #endif
303 //---------------------- mplayer-only options ------------------------
305 #ifdef CRASH_DEBUG
306 {"crash-debug", &crash_debug, CONF_TYPE_FLAG, CONF_GLOBAL, 0, 1, NULL},
307 {"nocrash-debug", &crash_debug, CONF_TYPE_FLAG, CONF_GLOBAL, 1, 0, NULL},
308 #endif
309 {"osdlevel", &osd_level, CONF_TYPE_INT, CONF_RANGE, 0, 3, NULL},
310 {"osd-duration", &osd_duration, CONF_TYPE_INT, CONF_MIN, 0, 0, NULL},
311 #ifdef HAVE_MENU
312 {"menu", &use_menu, CONF_TYPE_FLAG, CONF_GLOBAL, 0, 1, NULL},
313 {"nomenu", &use_menu, CONF_TYPE_FLAG, CONF_GLOBAL, 1, 0, NULL},
314 {"menu-root", &menu_root, CONF_TYPE_STRING, CONF_GLOBAL, 0, 0, NULL},
315 {"menu-cfg", &menu_cfg, CONF_TYPE_STRING, CONF_GLOBAL, 0, 0, NULL},
316 {"menu-startup", &menu_startup, CONF_TYPE_FLAG, CONF_GLOBAL, 0, 1, NULL},
317 #else
318 {"menu", "OSD menu support was not compiled in.\n", CONF_TYPE_PRINT,0, 0, 0, NULL},
319 #endif
321 // these should be moved to -common, and supported in MEncoder
322 {"vobsub", &vobsub_name, CONF_TYPE_STRING, 0, 0, 0, NULL},
323 {"vobsubid", &vobsub_id, CONF_TYPE_INT, CONF_RANGE, 0, 31, NULL},
325 {"sstep", &step_sec, CONF_TYPE_INT, CONF_MIN, 0, 0, NULL},
327 {"framedrop", &frame_dropping, CONF_TYPE_FLAG, 0, 0, 1, NULL},
328 {"hardframedrop", &frame_dropping, CONF_TYPE_FLAG, 0, 0, 2, NULL},
329 {"noframedrop", &frame_dropping, CONF_TYPE_FLAG, 0, 1, 0, NULL},
331 {"autoq", &auto_quality, CONF_TYPE_INT, CONF_RANGE, 0, 100, NULL},
333 {"benchmark", &benchmark, CONF_TYPE_FLAG, 0, 0, 1, NULL},
335 // dump some stream out instead of playing the file
336 // this really should be in MEncoder instead of MPlayer... -> TODO
337 {"dumpfile", &stream_dump_name, CONF_TYPE_STRING, 0, 0, 0, NULL},
338 {"dumpaudio", &stream_dump_type, CONF_TYPE_FLAG, 0, 0, 1, NULL},
339 {"dumpvideo", &stream_dump_type, CONF_TYPE_FLAG, 0, 0, 2, NULL},
340 {"dumpsub", &stream_dump_type, CONF_TYPE_FLAG, 0, 0, 3, NULL},
341 {"dumpmpsub", &stream_dump_type, CONF_TYPE_FLAG, 0, 0, 4, NULL},
342 {"dumpstream", &stream_dump_type, CONF_TYPE_FLAG, 0, 0, 5, NULL},
343 {"dumpsrtsub", &stream_dump_type, CONF_TYPE_FLAG, 0, 0, 6, NULL},
344 {"dumpmicrodvdsub", &stream_dump_type, CONF_TYPE_FLAG, 0, 0, 7, NULL},
345 {"dumpjacosub", &stream_dump_type, CONF_TYPE_FLAG, 0, 0, 8, NULL},
346 {"dumpsami", &stream_dump_type, CONF_TYPE_FLAG, 0, 0, 9, NULL},
348 #ifdef HAVE_LIRC
349 {"lircconf", &lirc_configfile, CONF_TYPE_STRING, CONF_GLOBAL, 0, 0, NULL},
350 #endif
352 {"gui", "Please remove gui=yes from your config file. Run gmplayer if you want the GUI.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL},
353 // {"gui", &use_gui, CONF_TYPE_FLAG, CONF_GLOBAL|CONF_NOCMD, 0, 1, NULL},
354 // {"nogui", &use_gui, CONF_TYPE_FLAG, CONF_GLOBAL, 1, 0, NULL},
356 #ifdef HAVE_NEW_GUI
357 {"skin", &skinName, CONF_TYPE_STRING, CONF_GLOBAL, 0, 0, NULL},
358 {"enqueue", &enqueue, CONF_TYPE_FLAG, 0, 0, 1, NULL},
359 {"noenqueue", &enqueue, CONF_TYPE_FLAG, 0, 0, 0, NULL},
360 {"guiwid", &guiWinID, CONF_TYPE_INT, 0, 0, 0, NULL},
361 #endif
363 {"noloop", &loop_times, CONF_TYPE_FLAG, 0, 0, -1, NULL},
364 {"loop", &loop_times, CONF_TYPE_INT, CONF_RANGE, -1, 10000, NULL},
365 {"playlist", NULL, CONF_TYPE_STRING, 0, 0, 0, NULL},
367 // a-v sync stuff:
368 {"noautosync", &autosync, CONF_TYPE_FLAG, 0, 0, -1, NULL},
369 {"autosync", &autosync, CONF_TYPE_INT, CONF_RANGE, 0, 10000, NULL},
370 // {"dapsync", &dapsync, CONF_TYPE_FLAG, 0, 0, 1, NULL},
371 // {"nodapsync", &dapsync, CONF_TYPE_FLAG, 0, 1, 0, NULL},
373 {"softsleep", &softsleep, CONF_TYPE_FLAG, 0, 0, 1, NULL},
374 #ifdef HAVE_RTC
375 {"nortc", &nortc, CONF_TYPE_FLAG, 0, 0, 1, NULL},
376 {"rtc", &nortc, CONF_TYPE_FLAG, 0, 0, 0, NULL},
377 {"rtc-device", &rtc_device, CONF_TYPE_STRING, 0, 0, 0, NULL},
378 #endif
380 {"term-osd", &term_osd, CONF_TYPE_FLAG, 0, 0, 1, NULL},
381 {"noterm-osd", &term_osd, CONF_TYPE_FLAG, 0, 0, 0, NULL},
382 {"term-osd-esc", &term_osd_esc, CONF_TYPE_STRING, 0, 0, 1, NULL},
384 {"slave", &slave_mode, CONF_TYPE_FLAG,CONF_GLOBAL , 0, 1, NULL},
385 {"idle", &player_idle_mode, CONF_TYPE_FLAG,CONF_GLOBAL , 0, 1, NULL},
386 {"noidle", &player_idle_mode, CONF_TYPE_FLAG,CONF_GLOBAL , 0, 0, NULL},
387 {"use-stdin", "-use-stdin has been renamed to -noconsolecontrols, use that instead.", CONF_TYPE_PRINT, 0, 0, 0, NULL},
388 {"key-fifo-size", &key_fifo_size, CONF_TYPE_INT, CONF_RANGE, 2, 65000, NULL},
389 {"noconsolecontrols", &noconsolecontrols, CONF_TYPE_FLAG, CONF_GLOBAL, 0, 1, NULL},
390 {"consolecontrols", &noconsolecontrols, CONF_TYPE_FLAG, CONF_GLOBAL, 0, 0, NULL},
392 #define MAIN_CONF
393 #include "cfg-common.h"
394 #undef MAIN_CONF
396 {"identify", &identify, CONF_TYPE_FLAG, CONF_GLOBAL, 0, 1, NULL},
397 {"-help", help_text, CONF_TYPE_PRINT, CONF_NOCFG|CONF_GLOBAL, 0, 0, NULL},
398 {"help", help_text, CONF_TYPE_PRINT, CONF_NOCFG|CONF_GLOBAL, 0, 0, NULL},
399 {"h", help_text, CONF_TYPE_PRINT, CONF_NOCFG|CONF_GLOBAL, 0, 0, NULL},
401 {"vd", vd_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL},
402 {NULL, NULL, 0, 0, 0, 0, NULL}