Added switches API and rawmidi API...

This commit is contained in:
Jaroslav Kysela 1998-08-27 20:47:51 +00:00
parent df8ab35aac
commit ef615c857f
13 changed files with 481 additions and 13 deletions

View file

@ -20,6 +20,10 @@ int snd_pcm_block_mode( void *handle, int enable );
int snd_pcm_info( void *handle, snd_pcm_info_t *info );
int snd_pcm_playback_info( void *handle, snd_pcm_playback_info_t *info );
int snd_pcm_record_info( void *handle, snd_pcm_record_info_t *info );
int snd_pcm_switches( void *handle );
int snd_pcm_switch( void *handle, const char *switch_id );
int snd_pcm_switch_read( void *handle, int switchn, snd_pcm_switch_t *data );
int snd_pcm_switch_write( void *handle, int switchn, snd_pcm_switch_t *data );
int snd_pcm_playback_format( void *handle, snd_pcm_format_t *format );
int snd_pcm_record_format( void *handle, snd_pcm_format_t *format );
int snd_pcm_playback_params( void *handle, snd_pcm_playback_params_t *params );