mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2025-10-29 05:40:25 -04:00
Changed some remaining size_t's
This commit is contained in:
parent
cc90e32557
commit
5d988e30e2
1 changed files with 5 additions and 5 deletions
|
|
@ -34,8 +34,8 @@
|
|||
typedef struct {
|
||||
long result;
|
||||
int cmd;
|
||||
size_t hw_ptr;
|
||||
size_t appl_ptr;
|
||||
snd_pcm_uframes_t hw_ptr;
|
||||
snd_pcm_uframes_t appl_ptr;
|
||||
union {
|
||||
struct {
|
||||
int sig;
|
||||
|
|
@ -47,20 +47,20 @@ typedef struct {
|
|||
snd_pcm_sw_params_t sw_params;
|
||||
snd_pcm_status_t status;
|
||||
struct {
|
||||
ssize_t frames;
|
||||
snd_pcm_sframes_t frames;
|
||||
} delay;
|
||||
struct {
|
||||
int enable;
|
||||
} pause;
|
||||
snd_pcm_channel_info_t channel_info;
|
||||
struct {
|
||||
ssize_t frames;
|
||||
snd_pcm_uframes_t frames;
|
||||
} rewind;
|
||||
struct {
|
||||
int fd;
|
||||
} link;
|
||||
struct {
|
||||
ssize_t frames;
|
||||
snd_pcm_uframes_t frames;
|
||||
} mmap_forward;
|
||||
} u;
|
||||
char data[0];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue