|
libao documentation |
libao version 0.8.0 - 20010804 |
ao_option
declared in "ao/ao.h";
A linked list structure to hold option key/value pairs as standard
null-terminated C strings. It is used by ao_open_live() and ao_open_file().
typedef struct {
char *key;
char *value;
struct ao_option *next; /* number of audio channels */
} ao_option;
|
Relevant Struct Members
- next
- Pointer to the next option in the list. Set to NULL to mark the end of
the list.
|