rename 'Timer' to 'struct timer'

This commit is contained in:
Jonathan Neuschäfer
2011-07-25 21:55:43 +02:00
committed by Max Kellermann
parent 4428894aba
commit 310895f060
7 changed files with 24 additions and 24 deletions
+1 -1
View File
@@ -42,7 +42,7 @@ struct fifo_data {
int input;
int output;
bool created;
Timer *timer;
struct timer *timer;
};
/**
+2 -2
View File
@@ -65,10 +65,10 @@ struct httpd_output {
GMutex *mutex;
/**
* A #Timer object to synchronize this output with the
* A #timer object to synchronize this output with the
* wallclock.
*/
Timer *timer;
struct timer *timer;
/**
* The listener socket.
+2 -2
View File
@@ -28,7 +28,7 @@
struct null_data {
bool sync;
Timer *timer;
struct timer *timer;
};
static void *
@@ -82,7 +82,7 @@ null_play(void *data, G_GNUC_UNUSED const void *chunk, size_t size,
G_GNUC_UNUSED GError **error)
{
struct null_data *nd = data;
Timer *timer = nd->timer;
struct timer *timer = nd->timer;
if (!nd->sync)
return size;
+1 -1
View File
@@ -41,7 +41,7 @@ struct openal_data {
const char *device_name;
ALCdevice *device;
ALCcontext *context;
Timer *timer;
struct timer *timer;
ALuint buffers[NUM_BUFFERS];
int filled;
ALuint source;