summaryrefslogtreecommitdiff
path: root/apps/scrobbler.h
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2013-07-12 12:06:38 -0400
committerMichael Sevakis <jethead71@rockbox.org>2013-07-13 00:08:51 -0400
commit023f6b6efd5407dc77c1253789f61baabb6607d6 (patch)
tree40d43117a7651715a2ce983eedff56b27962881a /apps/scrobbler.h
parentffa8626b0c93f8a65e0e17190917f7f173160842 (diff)
downloadrockbox-023f6b6efd5407dc77c1253789f61baabb6607d6.tar.gz
rockbox-023f6b6efd5407dc77c1253789f61baabb6607d6.zip
Get rid of some superfluous single-purpose functions in playback.
* Remove explicit tracking of elapsed time of previous track. * Remove function to obtain auto skip flag. * Most playback events now carry the extra information instead and pass 'struct track_event *' for data. * Tweak scrobbler to use PLAYBACK_EVENT_TRACK_FINISH, which makes it cleaner and removes the struct mp3entry. Change-Id: I500d2abb4056a32646496efc3617406e36811ec5
Diffstat (limited to 'apps/scrobbler.h')
-rw-r--r--apps/scrobbler.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/scrobbler.h b/apps/scrobbler.h
index d96b230cb7..a3d1b361df 100644
--- a/apps/scrobbler.h
+++ b/apps/scrobbler.h
@@ -23,8 +23,7 @@
23#define __SCROBBLER_H__ 23#define __SCROBBLER_H__
24 24
25int scrobbler_init(void); 25int scrobbler_init(void);
26void scrobbler_shutdown(void); 26void scrobbler_shutdown(bool poweroff);
27void scrobbler_poweroff(void);
28bool scrobbler_is_enabled(void); 27bool scrobbler_is_enabled(void);
29 28
30#endif /* __SCROBBLER_H__ */ 29#endif /* __SCROBBLER_H__ */