mirror of
				https://github.com/alsa-project/alsa-lib.git
				synced 2025-11-03 09:01:52 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			31 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/****************************************************************************
 | 
						|
 *                                                                          *
 | 
						|
 *                               timer.h                                    *
 | 
						|
 *                           Timer interface                                *
 | 
						|
 *                                                                          *
 | 
						|
 ****************************************************************************/
 | 
						|
 | 
						|
#ifdef __cplusplus
 | 
						|
extern "C" {
 | 
						|
#endif
 | 
						|
 | 
						|
typedef struct snd_timer snd_timer_t;
 | 
						|
 | 
						|
int snd_timer_open(snd_timer_t **handle);
 | 
						|
int snd_timer_close(snd_timer_t *handle);
 | 
						|
int snd_timer_poll_descriptor(snd_timer_t *handle);
 | 
						|
int snd_timer_general_info(snd_timer_t *handle, snd_timer_general_info_t * info);
 | 
						|
int snd_timer_select(snd_timer_t *handle, snd_timer_select_t *tselect);
 | 
						|
int snd_timer_info(snd_timer_t *handle, snd_timer_info_t *timer);
 | 
						|
int snd_timer_params(snd_timer_t *handle, snd_timer_params_t *params);
 | 
						|
int snd_timer_setup(snd_timer_t *handle, snd_timer_setup_t *setup);
 | 
						|
int snd_timer_status(snd_timer_t *handle, snd_timer_status_t *status);
 | 
						|
int snd_timer_start(snd_timer_t *handle);
 | 
						|
int snd_timer_stop(snd_timer_t *handle);
 | 
						|
int snd_timer_continue(snd_timer_t *handle);
 | 
						|
ssize_t snd_timer_read(snd_timer_t *handle, void *buffer, size_t size);
 | 
						|
 | 
						|
#ifdef __cplusplus
 | 
						|
}
 | 
						|
#endif
 | 
						|
 |