search for: driver_list

Displaying 3 results from an estimated 3 matches for "driver_list".

2003 Jul 28
13
Mdk 9.1, samba-LDAP 2.2.8a/3.0b3 (LDAP) can't print to z53
I've not been able to get Samba to print to a Lexmark Z53. If I call it a Z52, the driver uploads (to where, I have no idea so I can't check it) but I still can't get anything out of the printer.
2009 Oct 06
0
[ao] Two patches for libao2
..._option *options; > } ao_config; > > /* --- Functions --- */ > diff --git a/src/audio_out.c b/src/audio_out.c > index 6e39047..14012e4 100644 > --- a/src/audio_out.c > +++ b/src/audio_out.c > @@ -95,7 +95,8 @@ static ao_functions *static_drivers[] = { > > static driver_list *driver_head = NULL; > static ao_config config = { > - NULL /* default_driver */ > + NULL, /* default_driver */ > + NULL, /* options */ > }; > > static ao_info **info_table = NULL; > @@ -501,7 +502,10 @@ static ao_device* _open_device(int driver_id, ao_sample_format *fo...
2004 Oct 22
0
libao-0.8.5 patch
..., "r"); if (file != NULL) { fclose(file); errno = AO_EFILEEXISTS; @@ -645,7 +654,7 @@ } - file = fopen(filename, "w"); + file = fopen(fname, "w"); } @@ -757,6 +766,15 @@ return info_table; } +char *ao_file_extension(int driver_id) +{ + driver_list *driver; + + if ( (driver = _get_driver(driver_id)) ) + return (driver->functions->driver_info())->extension; + else + return NULL; +} /* -- Miscellaneous -- */ diff -ur libao-0.8.5/src/plugins/alsa/ao_alsa.c libao-0.8.5.new/src/plugins/alsa/ao_alsa.c --- libao-0.8.5/src/plugins/als...