summaryrefslogtreecommitdiff
path: root/apps/gui/wps.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/gui/wps.h')
-rw-r--r--apps/gui/wps.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/apps/gui/wps.h b/apps/gui/wps.h
index 75c8138d35..001c112a4d 100644
--- a/apps/gui/wps.h
+++ b/apps/gui/wps.h
@@ -23,6 +23,17 @@
23 23
24#include <stdbool.h> 24#include <stdbool.h>
25 25
26struct mp3entry;
27
28/* Please don't add anything else to here... */
29struct wps_state
30{
31 struct mp3entry *id3;
32 struct mp3entry *nid3;
33 int ff_rewind_count;
34 bool paused;
35};
36
26long gui_wps_show(void); 37long gui_wps_show(void);
27 38
28/* fade (if enabled) and pause the audio, optionally rewind a little */ 39/* fade (if enabled) and pause the audio, optionally rewind a little */
@@ -30,6 +41,8 @@ void pause_action(bool updatewps);
30void unpause_action(bool updatewps); 41void unpause_action(bool updatewps);
31void wps_do_playpause(bool updatewps); 42void wps_do_playpause(bool updatewps);
32 43
44struct wps_state *get_wps_state(void);
45
33/* in milliseconds */ 46/* in milliseconds */
34#define DEFAULT_SKIP_THRESH 3000l 47#define DEFAULT_SKIP_THRESH 3000l
35 48