Displaying 1 result from an estimated 1 matches for "device_options".
2001 Mar 10
0
patch to add device-option to ogg123 rc file
...bis-tools-1.0beta4-modified/ogg123/ao_interface.c	Sat Mar 10 03:28:28 2001
@@ -56,12 +56,13 @@
     return (result);
 }
 
-int get_default_device(void)
+int get_configs(ao_option_t ** op_h)
 {
     FILE *fp;
     char filename[FILENAME_MAX];
     char line[100];
     char *device = NULL;
+    char *device_options = NULL;
     char *homedir = getenv("HOME");
     int i;
 
@@ -74,15 +75,41 @@
     strcat(filename, "/.ogg123rc");
 
     fp = fopen(filename, "r");
-    /* if no ~/.ogg123rc can be found, try /etc/ogg123rc instead */
+    /* if no ~/.ogg123rc can be found, try /etc/o...