aboutsummaryrefslogtreecommitdiff
path: root/src/player_control.h
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-01-25 13:44:33 +0100
committerMax Kellermann <max@duempel.org>2009-01-25 13:44:33 +0100
commitd628eb3e8bb2b7e9db5ef6f5b907ac2a81afc86a (patch)
tree12b66d20a329dd7a66347ee21e1108c89613f080 /src/player_control.h
parentac0e799965afef198e3cba1eb11f018cae680ac3 (diff)
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 'src/player_control.h')
-rw-r--r--src/player_control.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/player_control.h b/src/player_control.h
index 441c055c..508798ff 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;