mirror of
				https://github.com/alsa-project/alsa-lib.git
				synced 2025-11-03 09:01:52 -05:00 
			
		
		
		
	Avoid use of gcc extensions if not strictly needed
This commit is contained in:
		
							parent
							
								
									aecf625c00
								
							
						
					
					
						commit
						31fb30da6b
					
				
					 5 changed files with 18 additions and 18 deletions
				
			
		| 
						 | 
				
			
			@ -3,7 +3,7 @@ extern "C" {
 | 
			
		|||
#endif
 | 
			
		||||
 | 
			
		||||
size_t snd_ctl_elem_id_sizeof();
 | 
			
		||||
#define snd_ctl_elem_id_alloca(ptr) ({ assert(ptr); *ptr = (snd_ctl_elem_id_t *) alloca(snd_ctl_elem_id_sizeof()); memset(*ptr, 0, snd_ctl_elem_id_sizeof()); 0; })
 | 
			
		||||
#define snd_ctl_elem_id_alloca(ptr) do { assert(ptr); *ptr = (snd_ctl_elem_id_t *) alloca(snd_ctl_elem_id_sizeof()); memset(*ptr, 0, snd_ctl_elem_id_sizeof()); } while (0)
 | 
			
		||||
int snd_ctl_elem_id_malloc(snd_ctl_elem_id_t **ptr);
 | 
			
		||||
void snd_ctl_elem_id_free(snd_ctl_elem_id_t *obj);
 | 
			
		||||
void snd_ctl_elem_id_copy(snd_ctl_elem_id_t *dst, const snd_ctl_elem_id_t *src);
 | 
			
		||||
| 
						 | 
				
			
			@ -33,7 +33,7 @@ void snd_ctl_elem_id_set_name(snd_ctl_elem_id_t *obj, const char *val);
 | 
			
		|||
void snd_ctl_elem_id_set_index(snd_ctl_elem_id_t *obj, unsigned int val);
 | 
			
		||||
 | 
			
		||||
size_t snd_ctl_card_info_sizeof();
 | 
			
		||||
#define snd_ctl_card_info_alloca(ptr) ({ assert(ptr); *ptr = (snd_ctl_card_info_t *) alloca(snd_ctl_card_info_sizeof()); memset(*ptr, 0, snd_ctl_card_info_sizeof()); 0; })
 | 
			
		||||
#define snd_ctl_card_info_alloca(ptr) do { assert(ptr); *ptr = (snd_ctl_card_info_t *) alloca(snd_ctl_card_info_sizeof()); memset(*ptr, 0, snd_ctl_card_info_sizeof()); } while (0)
 | 
			
		||||
int snd_ctl_card_info_malloc(snd_ctl_card_info_t **ptr);
 | 
			
		||||
void snd_ctl_card_info_free(snd_ctl_card_info_t *obj);
 | 
			
		||||
void snd_ctl_card_info_copy(snd_ctl_card_info_t *dst, const snd_ctl_card_info_t *src);
 | 
			
		||||
| 
						 | 
				
			
			@ -55,7 +55,7 @@ const char *snd_ctl_card_info_get_mixerid(const snd_ctl_card_info_t *obj);
 | 
			
		|||
const char *snd_ctl_card_info_get_mixername(const snd_ctl_card_info_t *obj);
 | 
			
		||||
 | 
			
		||||
size_t snd_ctl_event_sizeof();
 | 
			
		||||
#define snd_ctl_event_alloca(ptr) ({ assert(ptr); *ptr = (snd_ctl_event_t *) alloca(snd_ctl_event_sizeof()); memset(*ptr, 0, snd_ctl_event_sizeof()); 0; })
 | 
			
		||||
#define snd_ctl_event_alloca(ptr) do { assert(ptr); *ptr = (snd_ctl_event_t *) alloca(snd_ctl_event_sizeof()); memset(*ptr, 0, snd_ctl_event_sizeof()); } while (0)
 | 
			
		||||
int snd_ctl_event_malloc(snd_ctl_event_t **ptr);
 | 
			
		||||
void snd_ctl_event_free(snd_ctl_event_t *obj);
 | 
			
		||||
void snd_ctl_event_copy(snd_ctl_event_t *dst, const snd_ctl_event_t *src);
 | 
			
		||||
| 
						 | 
				
			
			@ -63,7 +63,7 @@ void snd_ctl_event_copy(snd_ctl_event_t *dst, const snd_ctl_event_t *src);
 | 
			
		|||
snd_ctl_event_type_t snd_ctl_event_get_type(const snd_ctl_event_t *obj);
 | 
			
		||||
 | 
			
		||||
size_t snd_ctl_elem_list_sizeof();
 | 
			
		||||
#define snd_ctl_elem_list_alloca(ptr) ({ assert(ptr); *ptr = (snd_ctl_elem_list_t *) alloca(snd_ctl_elem_list_sizeof()); memset(*ptr, 0, snd_ctl_elem_list_sizeof()); 0; })
 | 
			
		||||
#define snd_ctl_elem_list_alloca(ptr) do { assert(ptr); *ptr = (snd_ctl_elem_list_t *) alloca(snd_ctl_elem_list_sizeof()); memset(*ptr, 0, snd_ctl_elem_list_sizeof()); } while (0)
 | 
			
		||||
int snd_ctl_elem_list_malloc(snd_ctl_elem_list_t **ptr);
 | 
			
		||||
void snd_ctl_elem_list_free(snd_ctl_elem_list_t *obj);
 | 
			
		||||
void snd_ctl_elem_list_copy(snd_ctl_elem_list_t *dst, const snd_ctl_elem_list_t *src);
 | 
			
		||||
| 
						 | 
				
			
			@ -89,7 +89,7 @@ const char *snd_ctl_elem_list_get_name(const snd_ctl_elem_list_t *obj, unsigned
 | 
			
		|||
unsigned int snd_ctl_elem_list_get_index(const snd_ctl_elem_list_t *obj, unsigned int idx);
 | 
			
		||||
 | 
			
		||||
size_t snd_ctl_elem_info_sizeof();
 | 
			
		||||
#define snd_ctl_elem_info_alloca(ptr) ({ assert(ptr); *ptr = (snd_ctl_elem_info_t *) alloca(snd_ctl_elem_info_sizeof()); memset(*ptr, 0, snd_ctl_elem_info_sizeof()); 0; })
 | 
			
		||||
#define snd_ctl_elem_info_alloca(ptr) do { assert(ptr); *ptr = (snd_ctl_elem_info_t *) alloca(snd_ctl_elem_info_sizeof()); memset(*ptr, 0, snd_ctl_elem_info_sizeof()); } while (0)
 | 
			
		||||
int snd_ctl_elem_info_malloc(snd_ctl_elem_info_t **ptr);
 | 
			
		||||
void snd_ctl_elem_info_free(snd_ctl_elem_info_t *obj);
 | 
			
		||||
void snd_ctl_elem_info_copy(snd_ctl_elem_info_t *dst, const snd_ctl_elem_info_t *src);
 | 
			
		||||
| 
						 | 
				
			
			@ -151,7 +151,7 @@ void snd_ctl_elem_info_set_name(snd_ctl_elem_info_t *obj, const char *val);
 | 
			
		|||
void snd_ctl_elem_info_set_index(snd_ctl_elem_info_t *obj, unsigned int val);
 | 
			
		||||
 | 
			
		||||
size_t snd_ctl_elem_value_sizeof();
 | 
			
		||||
#define snd_ctl_elem_value_alloca(ptr) ({ assert(ptr); *ptr = (snd_ctl_elem_value_t *) alloca(snd_ctl_elem_value_sizeof()); memset(*ptr, 0, snd_ctl_elem_value_sizeof()); 0; })
 | 
			
		||||
#define snd_ctl_elem_value_alloca(ptr) do { assert(ptr); *ptr = (snd_ctl_elem_value_t *) alloca(snd_ctl_elem_value_sizeof()); memset(*ptr, 0, snd_ctl_elem_value_sizeof()); } while (0)
 | 
			
		||||
int snd_ctl_elem_value_malloc(snd_ctl_elem_value_t **ptr);
 | 
			
		||||
void snd_ctl_elem_value_free(snd_ctl_elem_value_t *obj);
 | 
			
		||||
void snd_ctl_elem_value_copy(snd_ctl_elem_value_t *dst, const snd_ctl_elem_value_t *src);
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -3,7 +3,7 @@ extern "C" {
 | 
			
		|||
#endif
 | 
			
		||||
 | 
			
		||||
size_t snd_hwdep_info_sizeof();
 | 
			
		||||
#define snd_hwdep_info_alloca(ptr) ({ assert(ptr); *ptr = (snd_hwdep_info_t *) alloca(snd_hwdep_info_sizeof()); memset(*ptr, 0, snd_hwdep_info_sizeof()); 0; })
 | 
			
		||||
#define snd_hwdep_info_alloca(ptr) do { assert(ptr); *ptr = (snd_hwdep_info_t *) alloca(snd_hwdep_info_sizeof()); memset(*ptr, 0, snd_hwdep_info_sizeof()); } while (0)
 | 
			
		||||
int snd_hwdep_info_malloc(snd_hwdep_info_t **ptr);
 | 
			
		||||
void snd_hwdep_info_free(snd_hwdep_info_t *obj);
 | 
			
		||||
void snd_hwdep_info_copy(snd_hwdep_info_t *dst, const snd_hwdep_info_t *src);
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -3,7 +3,7 @@ extern "C" {
 | 
			
		|||
#endif
 | 
			
		||||
 | 
			
		||||
size_t snd_mixer_selem_id_sizeof();
 | 
			
		||||
#define snd_mixer_selem_id_alloca(ptr) ({ assert(ptr); *ptr = (snd_mixer_selem_id_t *) alloca(snd_mixer_selem_id_sizeof()); memset(*ptr, 0, snd_mixer_selem_id_sizeof()); 0; })
 | 
			
		||||
#define snd_mixer_selem_id_alloca(ptr) do { assert(ptr); *ptr = (snd_mixer_selem_id_t *) alloca(snd_mixer_selem_id_sizeof()); memset(*ptr, 0, snd_mixer_selem_id_sizeof()); } while (0)
 | 
			
		||||
int snd_mixer_selem_id_malloc(snd_mixer_selem_id_t **ptr);
 | 
			
		||||
void snd_mixer_selem_id_free(snd_mixer_selem_id_t *obj);
 | 
			
		||||
void snd_mixer_selem_id_copy(snd_mixer_selem_id_t *dst, const snd_mixer_selem_id_t *src);
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -5,7 +5,7 @@ extern "C" {
 | 
			
		|||
 | 
			
		||||
 | 
			
		||||
size_t snd_pcm_access_mask_sizeof();
 | 
			
		||||
#define snd_pcm_access_mask_alloca(ptr) ({ assert(ptr); *ptr = (snd_pcm_access_mask_t *) alloca(snd_pcm_access_mask_sizeof()); memset(*ptr, 0, snd_pcm_access_mask_sizeof()); 0; })
 | 
			
		||||
#define snd_pcm_access_mask_alloca(ptr) do { assert(ptr); *ptr = (snd_pcm_access_mask_t *) alloca(snd_pcm_access_mask_sizeof()); memset(*ptr, 0, snd_pcm_access_mask_sizeof()); } while (0)
 | 
			
		||||
int snd_pcm_access_mask_malloc(snd_pcm_access_mask_t **ptr);
 | 
			
		||||
void snd_pcm_access_mask_free(snd_pcm_access_mask_t *obj);
 | 
			
		||||
void snd_pcm_access_mask_copy(snd_pcm_access_mask_t *dst, const snd_pcm_access_mask_t *src);
 | 
			
		||||
| 
						 | 
				
			
			@ -17,7 +17,7 @@ void snd_pcm_access_mask_set(snd_pcm_access_mask_t *mask, snd_pcm_access_t val);
 | 
			
		|||
void snd_pcm_access_mask_reset(snd_pcm_access_mask_t *mask, snd_pcm_access_t val);
 | 
			
		||||
 | 
			
		||||
size_t snd_pcm_format_mask_sizeof();
 | 
			
		||||
#define snd_pcm_format_mask_alloca(ptr) ({ assert(ptr); *ptr = (snd_pcm_format_mask_t *) alloca(snd_pcm_format_mask_sizeof()); memset(*ptr, 0, snd_pcm_format_mask_sizeof()); 0; })
 | 
			
		||||
#define snd_pcm_format_mask_alloca(ptr) do { assert(ptr); *ptr = (snd_pcm_format_mask_t *) alloca(snd_pcm_format_mask_sizeof()); memset(*ptr, 0, snd_pcm_format_mask_sizeof()); } while (0)
 | 
			
		||||
int snd_pcm_format_mask_malloc(snd_pcm_format_mask_t **ptr);
 | 
			
		||||
void snd_pcm_format_mask_free(snd_pcm_format_mask_t *obj);
 | 
			
		||||
void snd_pcm_format_mask_copy(snd_pcm_format_mask_t *dst, const snd_pcm_format_mask_t *src);
 | 
			
		||||
| 
						 | 
				
			
			@ -29,7 +29,7 @@ void snd_pcm_format_mask_set(snd_pcm_format_mask_t *mask, snd_pcm_format_t val);
 | 
			
		|||
void snd_pcm_format_mask_reset(snd_pcm_format_mask_t *mask, snd_pcm_format_t val);
 | 
			
		||||
 | 
			
		||||
size_t snd_pcm_subformat_mask_sizeof();
 | 
			
		||||
#define snd_pcm_subformat_mask_alloca(ptr) ({ assert(ptr); *ptr = (snd_pcm_subformat_mask_t *) alloca(snd_pcm_subformat_mask_sizeof()); memset(*ptr, 0, snd_pcm_subformat_mask_sizeof()); 0; })
 | 
			
		||||
#define snd_pcm_subformat_mask_alloca(ptr) do { assert(ptr); *ptr = (snd_pcm_subformat_mask_t *) alloca(snd_pcm_subformat_mask_sizeof()); memset(*ptr, 0, snd_pcm_subformat_mask_sizeof()); } while (0)
 | 
			
		||||
int snd_pcm_subformat_mask_malloc(snd_pcm_subformat_mask_t **ptr);
 | 
			
		||||
void snd_pcm_subformat_mask_free(snd_pcm_subformat_mask_t *obj);
 | 
			
		||||
void snd_pcm_subformat_mask_copy(snd_pcm_subformat_mask_t *dst, const snd_pcm_subformat_mask_t *src);
 | 
			
		||||
| 
						 | 
				
			
			@ -41,7 +41,7 @@ void snd_pcm_subformat_mask_set(snd_pcm_subformat_mask_t *mask, snd_pcm_subforma
 | 
			
		|||
void snd_pcm_subformat_mask_reset(snd_pcm_subformat_mask_t *mask, snd_pcm_subformat_t val);
 | 
			
		||||
 | 
			
		||||
size_t snd_pcm_hw_params_sizeof();
 | 
			
		||||
#define snd_pcm_hw_params_alloca(ptr) ({ assert(ptr); *ptr = (snd_pcm_hw_params_t *) alloca(snd_pcm_hw_params_sizeof()); memset(*ptr, 0, snd_pcm_hw_params_sizeof()); 0; })
 | 
			
		||||
#define snd_pcm_hw_params_alloca(ptr) do { assert(ptr); *ptr = (snd_pcm_hw_params_t *) alloca(snd_pcm_hw_params_sizeof()); memset(*ptr, 0, snd_pcm_hw_params_sizeof()); } while (0)
 | 
			
		||||
int snd_pcm_hw_params_malloc(snd_pcm_hw_params_t **ptr);
 | 
			
		||||
void snd_pcm_hw_params_free(snd_pcm_hw_params_t *obj);
 | 
			
		||||
void snd_pcm_hw_params_copy(snd_pcm_hw_params_t *dst, const snd_pcm_hw_params_t *src);
 | 
			
		||||
| 
						 | 
				
			
			@ -166,7 +166,7 @@ unsigned int snd_pcm_hw_params_set_tick_time_first(snd_pcm_t *pcm, snd_pcm_hw_pa
 | 
			
		|||
unsigned int snd_pcm_hw_params_set_tick_time_last(snd_pcm_t *pcm, snd_pcm_hw_params_t *params, int *dir);
 | 
			
		||||
 | 
			
		||||
size_t snd_pcm_sw_params_sizeof();
 | 
			
		||||
#define snd_pcm_sw_params_alloca(ptr) ({ assert(ptr); *ptr = (snd_pcm_sw_params_t *) alloca(snd_pcm_sw_params_sizeof()); memset(*ptr, 0, snd_pcm_sw_params_sizeof()); 0; })
 | 
			
		||||
#define snd_pcm_sw_params_alloca(ptr) do { assert(ptr); *ptr = (snd_pcm_sw_params_t *) alloca(snd_pcm_sw_params_sizeof()); memset(*ptr, 0, snd_pcm_sw_params_sizeof()); } while (0)
 | 
			
		||||
int snd_pcm_sw_params_malloc(snd_pcm_sw_params_t **ptr);
 | 
			
		||||
void snd_pcm_sw_params_free(snd_pcm_sw_params_t *obj);
 | 
			
		||||
void snd_pcm_sw_params_copy(snd_pcm_sw_params_t *dst, const snd_pcm_sw_params_t *src);
 | 
			
		||||
| 
						 | 
				
			
			@ -199,7 +199,7 @@ int snd_pcm_sw_params_set_silence_size(snd_pcm_t *pcm, snd_pcm_sw_params_t *para
 | 
			
		|||
snd_pcm_uframes_t snd_pcm_sw_params_get_silence_size(const snd_pcm_sw_params_t *params);
 | 
			
		||||
 | 
			
		||||
size_t snd_pcm_status_sizeof();
 | 
			
		||||
#define snd_pcm_status_alloca(ptr) ({ assert(ptr); *ptr = (snd_pcm_status_t *) alloca(snd_pcm_status_sizeof()); memset(*ptr, 0, snd_pcm_status_sizeof()); 0; })
 | 
			
		||||
#define snd_pcm_status_alloca(ptr) do { assert(ptr); *ptr = (snd_pcm_status_t *) alloca(snd_pcm_status_sizeof()); memset(*ptr, 0, snd_pcm_status_sizeof()); } while (0)
 | 
			
		||||
int snd_pcm_status_malloc(snd_pcm_status_t **ptr);
 | 
			
		||||
void snd_pcm_status_free(snd_pcm_status_t *obj);
 | 
			
		||||
void snd_pcm_status_copy(snd_pcm_status_t *dst, const snd_pcm_status_t *src);
 | 
			
		||||
| 
						 | 
				
			
			@ -217,7 +217,7 @@ snd_pcm_uframes_t snd_pcm_status_get_avail(const snd_pcm_status_t *obj);
 | 
			
		|||
snd_pcm_uframes_t snd_pcm_status_get_avail_max(const snd_pcm_status_t *obj);
 | 
			
		||||
 | 
			
		||||
size_t snd_pcm_info_sizeof();
 | 
			
		||||
#define snd_pcm_info_alloca(ptr) ({ assert(ptr); *ptr = (snd_pcm_info_t *) alloca(snd_pcm_info_sizeof()); memset(*ptr, 0, snd_pcm_info_sizeof()); 0; })
 | 
			
		||||
#define snd_pcm_info_alloca(ptr) do { assert(ptr); *ptr = (snd_pcm_info_t *) alloca(snd_pcm_info_sizeof()); memset(*ptr, 0, snd_pcm_info_sizeof()); } while (0)
 | 
			
		||||
int snd_pcm_info_malloc(snd_pcm_info_t **ptr);
 | 
			
		||||
void snd_pcm_info_free(snd_pcm_info_t *obj);
 | 
			
		||||
void snd_pcm_info_copy(snd_pcm_info_t *dst, const snd_pcm_info_t *src);
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -3,7 +3,7 @@ extern "C" {
 | 
			
		|||
#endif
 | 
			
		||||
 | 
			
		||||
size_t snd_rawmidi_params_sizeof();
 | 
			
		||||
#define snd_rawmidi_params_alloca(ptr) ({ assert(ptr); *ptr = (snd_rawmidi_params_t *) alloca(snd_rawmidi_params_sizeof()); memset(*ptr, 0, snd_rawmidi_params_sizeof()); 0; })
 | 
			
		||||
#define snd_rawmidi_params_alloca(ptr) do { assert(ptr); *ptr = (snd_rawmidi_params_t *) alloca(snd_rawmidi_params_sizeof()); memset(*ptr, 0, snd_rawmidi_params_sizeof()); } while (0)
 | 
			
		||||
int snd_rawmidi_params_malloc(snd_rawmidi_params_t **ptr);
 | 
			
		||||
void snd_rawmidi_params_free(snd_rawmidi_params_t *obj);
 | 
			
		||||
void snd_rawmidi_params_copy(snd_rawmidi_params_t *dst, const snd_rawmidi_params_t *src);
 | 
			
		||||
| 
						 | 
				
			
			@ -18,7 +18,7 @@ int snd_rawmidi_params_set_no_active_sensing(snd_rawmidi_t *rmidi, snd_rawmidi_p
 | 
			
		|||
int snd_rawmidi_params_get_no_active_sensing(const snd_rawmidi_params_t *params);
 | 
			
		||||
 | 
			
		||||
size_t snd_rawmidi_info_sizeof();
 | 
			
		||||
#define snd_rawmidi_info_alloca(ptr) ({ assert(ptr); *ptr = (snd_rawmidi_info_t *) alloca(snd_rawmidi_info_sizeof()); memset(*ptr, 0, snd_rawmidi_info_sizeof()); 0; })
 | 
			
		||||
#define snd_rawmidi_info_alloca(ptr) do { assert(ptr); *ptr = (snd_rawmidi_info_t *) alloca(snd_rawmidi_info_sizeof()); memset(*ptr, 0, snd_rawmidi_info_sizeof()); } while (0)
 | 
			
		||||
int snd_rawmidi_info_malloc(snd_rawmidi_info_t **ptr);
 | 
			
		||||
void snd_rawmidi_info_free(snd_rawmidi_info_t *obj);
 | 
			
		||||
void snd_rawmidi_info_copy(snd_rawmidi_info_t *dst, const snd_rawmidi_info_t *src);
 | 
			
		||||
| 
						 | 
				
			
			@ -50,7 +50,7 @@ void snd_rawmidi_info_set_subdevice(snd_rawmidi_info_t *obj, unsigned int val);
 | 
			
		|||
void snd_rawmidi_info_set_stream(snd_rawmidi_info_t *obj, snd_rawmidi_stream_t val);
 | 
			
		||||
 | 
			
		||||
size_t snd_rawmidi_status_sizeof();
 | 
			
		||||
#define snd_rawmidi_status_alloca(ptr) ({ assert(ptr); *ptr = (snd_rawmidi_status_t *) alloca(snd_rawmidi_status_sizeof()); memset(*ptr, 0, snd_rawmidi_status_sizeof()); 0; })
 | 
			
		||||
#define snd_rawmidi_status_alloca(ptr) do { assert(ptr); *ptr = (snd_rawmidi_status_t *) alloca(snd_rawmidi_status_sizeof()); memset(*ptr, 0, snd_rawmidi_status_sizeof()); } while (0)
 | 
			
		||||
int snd_rawmidi_status_malloc(snd_rawmidi_status_t **ptr);
 | 
			
		||||
void snd_rawmidi_status_free(snd_rawmidi_status_t *obj);
 | 
			
		||||
void snd_rawmidi_status_copy(snd_rawmidi_status_t *dst, const snd_rawmidi_status_t *src);
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue