ao.h | ao.h | |||
---|---|---|---|---|
skipping to change at line 127 | skipping to change at line 127 | |||
int ao_play(ao_device *device, | int ao_play(ao_device *device, | |||
char *output_samples, | char *output_samples, | |||
uint_32 num_bytes); | uint_32 num_bytes); | |||
int ao_close(ao_device *device); | int ao_close(ao_device *device); | |||
/* driver information */ | /* driver information */ | |||
int ao_driver_id(const char *short_name); | int ao_driver_id(const char *short_name); | |||
int ao_default_driver_id(void); | int ao_default_driver_id(void); | |||
ao_info *ao_driver_info(int driver_id); | ao_info *ao_driver_info(int driver_id); | |||
ao_info **ao_driver_info_list(int *driver_count); | ao_info **ao_driver_info_list(int *driver_count); | |||
char *ao_file_extension(int driver_id); | const char *ao_file_extension(int driver_id); | |||
/* miscellaneous */ | /* miscellaneous */ | |||
int ao_is_big_endian(void); | int ao_is_big_endian(void); | |||
#ifdef __cplusplus | #ifdef __cplusplus | |||
} | } | |||
#endif /* __cplusplus */ | #endif /* __cplusplus */ | |||
#endif /* __AO_H__ */ | #endif /* __AO_H__ */ | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added | |||
plugin.h | plugin.h | |||
---|---|---|---|---|
skipping to change at line 45 | skipping to change at line 45 | |||
int ao_plugin_test(); | int ao_plugin_test(); | |||
ao_info *ao_plugin_driver_info(); | ao_info *ao_plugin_driver_info(); | |||
int ao_plugin_device_init(ao_device *device); | int ao_plugin_device_init(ao_device *device); | |||
int ao_plugin_set_option(ao_device *device, const char *key, const char *va lue); | int ao_plugin_set_option(ao_device *device, const char *key, const char *va lue); | |||
int ao_plugin_open(ao_device *device, ao_sample_format *format); | int ao_plugin_open(ao_device *device, ao_sample_format *format); | |||
int ao_plugin_play(ao_device *device, const char *output_samples, | int ao_plugin_play(ao_device *device, const char *output_samples, | |||
uint_32 num_bytes); | uint_32 num_bytes); | |||
int ao_plugin_close(ao_device *device); | int ao_plugin_close(ao_device *device); | |||
void ao_plugin_device_clear(ao_device *device); | void ao_plugin_device_clear(ao_device *device); | |||
char *ao_plugin_file_extension(); | const char *ao_plugin_file_extension(); | |||
#ifdef __cplusplus | #ifdef __cplusplus | |||
} | } | |||
#endif /* __cplusplus */ | #endif /* __cplusplus */ | |||
#endif /* __PLUGIN_H__ */ | #endif /* __PLUGIN_H__ */ | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added | |||