comparison src/audacious/main.c @ 4200:c010163b6286

It's now a .app on MacOS
author Chris Fuenty <zimmy@atheme.org>
date Sat, 19 Jan 2008 17:16:48 -0600
parents f6da5b8d401e
children 75d99359357b
comparison
equal deleted inserted replaced
4199:5aab99923422 4200:c010163b6286
100 gboolean headless; 100 gboolean headless;
101 gboolean no_log; 101 gboolean no_log;
102 gboolean enqueue_to_temp; 102 gboolean enqueue_to_temp;
103 gboolean version; 103 gboolean version;
104 gchar *previous_session_id; 104 gchar *previous_session_id;
105 gboolean macpack;
105 }; 106 };
106 107
107 typedef struct _BmpCmdLineOpt BmpCmdLineOpt; 108 typedef struct _BmpCmdLineOpt BmpCmdLineOpt;
108 109
109 BmpCmdLineOpt options; 110 BmpCmdLineOpt options;
1029 {"show-main-window", 'm', 0, G_OPTION_ARG_NONE, &options.mainwin, N_("Display the main window"), NULL}, 1030 {"show-main-window", 'm', 0, G_OPTION_ARG_NONE, &options.mainwin, N_("Display the main window"), NULL},
1030 {"activate", 'a', 0, G_OPTION_ARG_NONE, &options.activate, N_("Display all open Audacious windows"), NULL}, 1031 {"activate", 'a', 0, G_OPTION_ARG_NONE, &options.activate, N_("Display all open Audacious windows"), NULL},
1031 {"headless", 'H', 0, G_OPTION_ARG_NONE, &options.headless, N_("Enable headless operation"), NULL}, 1032 {"headless", 'H', 0, G_OPTION_ARG_NONE, &options.headless, N_("Enable headless operation"), NULL},
1032 {"no-log", 'N', 0, G_OPTION_ARG_NONE, &options.no_log, N_("Print all errors and warnings to stdout"), NULL}, 1033 {"no-log", 'N', 0, G_OPTION_ARG_NONE, &options.no_log, N_("Print all errors and warnings to stdout"), NULL},
1033 {"version", 'v', 0, G_OPTION_ARG_NONE, &options.version, N_("Show version and builtin features"), NULL}, 1034 {"version", 'v', 0, G_OPTION_ARG_NONE, &options.version, N_("Show version and builtin features"), NULL},
1035 #ifdef GDK_WINDOWING_QUARTZ
1036 {"macpack", 'n', 0, G_OPTION_ARG_NONE, &options.macpack, N_("Used in macpacking"), NULL}, /* Make this hidden */
1037 #endif
1034 {G_OPTION_REMAINING, 0, 0, G_OPTION_ARG_FILENAME_ARRAY, &options.filenames, N_("FILE..."), NULL}, 1038 {G_OPTION_REMAINING, 0, 0, G_OPTION_ARG_FILENAME_ARRAY, &options.filenames, N_("FILE..."), NULL},
1035 {NULL}, 1039 {NULL},
1036 }; 1040 };
1037 1041
1038 static gboolean 1042 static gboolean