aboutsummaryrefslogtreecommitdiff
path: root/include/aserver.h
diff options
context:
space:
mode:
authorAbramo Bagnara <abramo@alsa-project.org>2001-01-15 13:17:18 +0000
committerAbramo Bagnara <abramo@alsa-project.org>2001-01-15 13:17:18 +0000
commit5d988e30e2ae263667183637b29338d6139bc76b (patch)
treea268f5def0e881c8a20c19ec074d8ec04d8603ed /include/aserver.h
parentcc90e325579c7dbdf70c2b5f70e5290a97df48b4 (diff)
Changed some remaining size_t's
Diffstat (limited to 'include/aserver.h')
-rw-r--r--include/aserver.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/aserver.h b/include/aserver.h
index f9d5f88f..cfd0309e 100644
--- a/include/aserver.h
+++ b/include/aserver.h
@@ -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];