diff options
author | Max Kellermann <max@duempel.org> | 2008-08-26 08:27:04 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-08-26 08:27:04 +0200 |
commit | 241cd043ca4f9dd560e6d947a9bf025f58de4ea9 (patch) | |
tree | d674656743e506ca5ae183638fdddc5f3c411dc8 /src/player.h | |
parent | 87beded44f0798c80744fcaebb06cac9ce8bbf39 (diff) | |
download | mpd-241cd043ca4f9dd560e6d947a9bf025f58de4ea9.tar.gz mpd-241cd043ca4f9dd560e6d947a9bf025f58de4ea9.tar.xz mpd-241cd043ca4f9dd560e6d947a9bf025f58de4ea9.zip |
invoke the notify API directly
Don't use wrappers like player_wakeup_decoder_nb(). These have been
wrappers calling notify.c functions, for compatibility with the
existing code when we migrated to notify.c.
Diffstat (limited to '')
-rw-r--r-- | src/player.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/player.h b/src/player.h index db8f44de6..e204639e7 100644 --- a/src/player.h +++ b/src/player.h @@ -76,10 +76,6 @@ typedef struct _PlayerControl { volatile double totalPlayTime; } PlayerControl; -void wakeup_player_nb(void); - -void player_sleep(void); - int playerPlay(int fd, Song * song); int playerSetPause(int fd, int pause_flag); |