diff options
author | Max Kellermann <max@duempel.org> | 2013-09-27 22:56:30 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-09-27 23:00:23 +0200 |
commit | ccd7f0825acb031259330d32c54e61fc7f9ba7b1 (patch) | |
tree | 315f4d8e4dc2cae5e7bc07efce5fb414a4a8e502 /src/DecoderControl.hxx | |
parent | d0896ea7c4bf7708ea24c7beb81b16776b446a6e (diff) | |
download | mpd-ccd7f0825acb031259330d32c54e61fc7f9ba7b1.tar.gz mpd-ccd7f0825acb031259330d32c54e61fc7f9ba7b1.tar.xz mpd-ccd7f0825acb031259330d32c54e61fc7f9ba7b1.zip |
DecoderControl: use GLib forward declarations
Diffstat (limited to '')
-rw-r--r-- | src/DecoderControl.hxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/DecoderControl.hxx b/src/DecoderControl.hxx index 3885305a7..a787242e1 100644 --- a/src/DecoderControl.hxx +++ b/src/DecoderControl.hxx @@ -26,8 +26,6 @@ #include "thread/Cond.hxx" #include "util/Error.hxx" -#include <glib.h> - #include <assert.h> #include <stdint.h> @@ -39,6 +37,7 @@ struct Song; class MusicBuffer; class MusicPipe; +typedef struct _GThread GThread; enum class DecoderState : uint8_t { STOP = 0, |