mirror of
http://www.pogo.org.uk/~mark/trx.git
synced 2024-11-24 11:25:06 +01:00
11 lines
213 B
C
11 lines
213 B
C
#ifndef DEVICE_H
|
|
#define DEVICE_H
|
|
|
|
void aerror(const char *msg, int r);
|
|
int set_alsa_hw(snd_pcm_t *pcm,
|
|
unsigned int rate, unsigned int channels,
|
|
unsigned int buffer);
|
|
int set_alsa_sw(snd_pcm_t *pcm);
|
|
|
|
#endif
|