mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2025-11-02 09:01:48 -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
|
|
@ -82,11 +82,11 @@ static int snd_timer_query_hw_status(snd_timer_query_t *handle, snd_timer_gstatu
|
|||
}
|
||||
|
||||
static snd_timer_query_ops_t snd_timer_query_hw_ops = {
|
||||
close: snd_timer_query_hw_close,
|
||||
next_device: snd_timer_query_hw_next_device,
|
||||
info: snd_timer_query_hw_info,
|
||||
params: snd_timer_query_hw_params,
|
||||
status: snd_timer_query_hw_status
|
||||
.close = snd_timer_query_hw_close,
|
||||
.next_device = snd_timer_query_hw_next_device,
|
||||
.info = snd_timer_query_hw_info,
|
||||
.params = snd_timer_query_hw_params,
|
||||
.status = snd_timer_query_hw_status
|
||||
};
|
||||
|
||||
int snd_timer_query_hw_open(snd_timer_query_t **handle, const char *name, int mode)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue