diff options
author | Max Kellermann <max@duempel.org> | 2009-01-25 13:44:33 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-01-25 13:44:33 +0100 |
commit | d628eb3e8bb2b7e9db5ef6f5b907ac2a81afc86a (patch) | |
tree | 12b66d20a329dd7a66347ee21e1108c89613f080 /src/player_control.h | |
parent | ac0e799965afef198e3cba1eb11f018cae680ac3 (diff) | |
download | mpd-d628eb3e8bb2b7e9db5ef6f5b907ac2a81afc86a.tar.gz mpd-d628eb3e8bb2b7e9db5ef6f5b907ac2a81afc86a.tar.xz mpd-d628eb3e8bb2b7e9db5ef6f5b907ac2a81afc86a.zip |
player_control: added player_control.thread
player_control.thread contains the handle of the player thread, or
NULL if the player thread isn't running.
Diffstat (limited to '')
-rw-r--r-- | src/player_control.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/player_control.h b/src/player_control.h index 441c055cd..508798fff 100644 --- a/src/player_control.h +++ b/src/player_control.h @@ -62,6 +62,10 @@ enum player_error { struct player_control { unsigned int buffered_before_play; + /** the handle of the player thread, or NULL if the player + thread isn't running */ + GThread *thread; + struct notify notify; volatile enum player_command command; volatile enum player_state state; |