From f1dd9c209c3a1cf6826d3a38b60f638e0faeadab Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sun, 7 Sep 2008 19:19:55 +0200 Subject: audio_format: converted typedef AudioFormat to struct audio_format Get rid of CamelCase, and don't use a typedef, so we can forward-declare it, and unclutter the include dependencies. --- src/timer.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/timer.h') diff --git a/src/timer.h b/src/timer.h index 6851a1535..80bef952d 100644 --- a/src/timer.h +++ b/src/timer.h @@ -19,16 +19,17 @@ #ifndef MPD_TIMER_H #define MPD_TIMER_H -#include "audio_format.h" #include "os_compat.h" +struct audio_format; + typedef struct _Timer { uint64_t time; int started; int rate; } Timer; -Timer *timer_new(AudioFormat *af); +Timer *timer_new(struct audio_format *af); void timer_free(Timer *timer); -- cgit v1.2.3