aboutsummaryrefslogtreecommitdiffstats
path: root/src/player.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/player.h')
-rw-r--r--src/player.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/player.h b/src/player.h
index 6ec3f8329..623ae1fb0 100644
--- a/src/player.h
+++ b/src/player.h
@@ -76,9 +76,9 @@ typedef struct _PlayerControl {
volatile double totalPlayTime;
} PlayerControl;
-void wakeup_player_nb(PlayerControl *pc);
+void wakeup_player_nb(void);
-void player_sleep(PlayerControl *pc);
+void player_sleep(void);
int playerPlay(int fd, Song * song);
@@ -134,6 +134,6 @@ int getPlayerChannels(void);
Song *playerCurrentDecodeSong(void);
-void playerInit(PlayerControl * pc);
+void playerInit(void);
#endif