comparison cfg-mplayer.h @ 12816:fba780800efe

-use-stdin renamed to -noconsolecontrols.
author diego
date Wed, 14 Jul 2004 09:27:04 +0000
parents 4e781e0ca837
children 9e7cba8fe56f
comparison
equal deleted inserted replaced
12815:3c99b7a8c840 12816:fba780800efe
2 * config for cfgparser 2 * config for cfgparser
3 */ 3 */
4 4
5 #include "cfg-common.h" 5 #include "cfg-common.h"
6 6
7 extern int use_stdin; 7 extern int noconsolecontrols;
8 8
9 #if defined(HAVE_FBDEV)||defined(HAVE_VESA) 9 #if defined(HAVE_FBDEV)||defined(HAVE_VESA)
10 extern char *monitor_hfreq_str; 10 extern char *monitor_hfreq_str;
11 extern char *monitor_vfreq_str; 11 extern char *monitor_vfreq_str;
12 extern char *monitor_dotclock_str; 12 extern char *monitor_dotclock_str;
415 {"rtc", &nortc, CONF_TYPE_FLAG, 0, 0, 0, NULL}, 415 {"rtc", &nortc, CONF_TYPE_FLAG, 0, 0, 0, NULL},
416 {"rtc-device", &rtc_device, CONF_TYPE_STRING, 0, 0, 0, NULL}, 416 {"rtc-device", &rtc_device, CONF_TYPE_STRING, 0, 0, 0, NULL},
417 #endif 417 #endif
418 418
419 {"slave", &slave_mode, CONF_TYPE_FLAG,CONF_GLOBAL , 0, 1, NULL}, 419 {"slave", &slave_mode, CONF_TYPE_FLAG,CONF_GLOBAL , 0, 1, NULL},
420 {"use-stdin", &use_stdin, CONF_TYPE_FLAG, CONF_GLOBAL, 0, 1, NULL}, 420 {"use-stdin", "-use-stdin has been renamed to -noconsolecontrols, use that instead.", CONF_TYPE_PRINT, 0, 0, 0, NULL},
421 {"noconsolecontrols", &noconsolecontrols, CONF_TYPE_FLAG, CONF_GLOBAL, 0, 1, NULL},
422 {"consolecontrols", &noconsolecontrols, CONF_TYPE_FLAG, CONF_GLOBAL, 0, 0, NULL},
421 423
422 #define MAIN_CONF 424 #define MAIN_CONF
423 #include "cfg-common.h" 425 #include "cfg-common.h"
424 #undef MAIN_CONF 426 #undef MAIN_CONF
425 427