restructuring
[rrq/lsp-utils.git] / lsp-alsa / libasound-pcm.lsp
1 (constant
2  ;; typedef enum _snd_pcm_stream
3  'SND_PCM_STREAM_PLAYBACK 0
4  'SND_PCM_STREAM_CAPTURE  1
5  ;; Non blocking mode (flag for open mode)
6  'SND_PCM_NONBLOCK 0x00000001
7  ;; Async notification
8  'SND_PCM_ASYNC    0x00000002
9  )
10
11 (import LIB "snd_pcm_open" "int"
12         "void*" ; snd_pcm_t **pcmp [output]
13         "char*" ; const char *name
14         "int"   ; snd_pcm_stream_t stream
15         "int"   ; int mode
16         )
17
18