voice_params.h 220 B

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