audio.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:0k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef __ASM_ARCH_AUDIO_H__
  2. #define __ASM_ARCH_AUDIO_H__
  3. #include <sound/driver.h>
  4. #include <sound/core.h>
  5. #include <sound/pcm.h>
  6. typedef struct {
  7. int (*startup)(snd_pcm_substream_t *, void *);
  8. void (*shutdown)(snd_pcm_substream_t *, void *);
  9. void (*suspend)(void *);
  10. void (*resume)(void *);
  11. void *priv;
  12. } pxa2xx_audio_ops_t;
  13. #endif