mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2025-11-03 09:01:52 -05:00
fixes by Art Haas <ahaas@airmail.net>:
rewritten with C99 struct initialization style.
This commit is contained in:
parent
c18c32b26c
commit
7716fd1e3d
33 changed files with 762 additions and 762 deletions
|
|
@ -95,12 +95,12 @@ static ssize_t snd_hwdep_hw_read(snd_hwdep_t *hwdep, void *buffer, size_t size)
|
|||
}
|
||||
|
||||
static snd_hwdep_ops_t snd_hwdep_hw_ops = {
|
||||
close: snd_hwdep_hw_close,
|
||||
nonblock: snd_hwdep_hw_nonblock,
|
||||
info: snd_hwdep_hw_info,
|
||||
ioctl: snd_hwdep_hw_ioctl,
|
||||
write: snd_hwdep_hw_write,
|
||||
read: snd_hwdep_hw_read,
|
||||
.close = snd_hwdep_hw_close,
|
||||
.nonblock = snd_hwdep_hw_nonblock,
|
||||
.info = snd_hwdep_hw_info,
|
||||
.ioctl = snd_hwdep_hw_ioctl,
|
||||
.write = snd_hwdep_hw_write,
|
||||
.read = snd_hwdep_hw_read,
|
||||
};
|
||||
|
||||
int snd_hwdep_hw_open(snd_hwdep_t **handle, const char *name, int card, int device, int mode)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue