voice_params.h 246 B

123456789101112131415
  1. #ifndef __VOICE_PARAMS_H__
  2. #define __VOICE_PARAMS_H__
  3. #include <linux/types.h>
  4. #include <sound/asound.h>
  5. enum voice_lch_mode {
  6. VOICE_LCH_START = 1,
  7. VOICE_LCH_STOP
  8. };
  9. #define SNDRV_VOICE_IOCTL_LCH _IOW('U', 0x00, enum voice_lch_mode)
  10. #endif