Ignore:
Timestamp:
Jul 23, 2006, 11:54:27 AM (19 years ago)
Author:
vladest
Message:

Provide sources to latest exist binary. See changelog for changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • GPL/trunk/alsa-kernel/include/sound/asound.h

    r36 r77  
    714714 ****************************************************************************/
    715715
    716 #define SNDRV_CTL_VERSION               SNDRV_PROTOCOL_VERSION(2, 0, 3)
     716#define SNDRV_CTL_VERSION               SNDRV_PROTOCOL_VERSION(2, 0, 4)
    717717
    718718struct snd_ctl_card_info {
     
    844844};
    845845
     846struct snd_ctl_tlv {
     847    unsigned int numid; /* control element numeric identification */
     848    unsigned int length;        /* in bytes aligned to 4 */
     849    unsigned int tlv[1];        /* first TLV */
     850};
     851
    846852enum {
    847853        SNDRV_CTL_IOCTL_PVERSION = _IOR('U', 0x00, int),
     
    856862        SNDRV_CTL_IOCTL_ELEM_ADD = _IOWR('U', 0x17, struct snd_ctl_elem_info),
    857863        SNDRV_CTL_IOCTL_ELEM_REPLACE = _IOWR('U', 0x18, struct snd_ctl_elem_info),
    858         SNDRV_CTL_IOCTL_ELEM_REMOVE = _IOWR('U', 0x19, struct snd_ctl_elem_id),
     864        SNDRV_CTL_IOCTL_ELEM_REMOVE = _IOWR('U', 0x19, struct snd_ctl_elem_id),
     865        SNDRV_CTL_IOCTL_TLV_READ = _IOWR('U', 0x1a, struct snd_ctl_tlv),
    859866        SNDRV_CTL_IOCTL_HWDEP_NEXT_DEVICE = _IOWR('U', 0x20, int),
    860867        SNDRV_CTL_IOCTL_HWDEP_INFO = _IOR('U', 0x21, struct snd_hwdep_info),
Note: See TracChangeset for help on using the changeset viewer.