summaryrefslogtreecommitdiff
path: root/utils/wpseditor/libwps/src/dummies.h
diff options
context:
space:
mode:
Diffstat (limited to 'utils/wpseditor/libwps/src/dummies.h')
-rw-r--r--utils/wpseditor/libwps/src/dummies.h44
1 files changed, 44 insertions, 0 deletions
diff --git a/utils/wpseditor/libwps/src/dummies.h b/utils/wpseditor/libwps/src/dummies.h
new file mode 100644
index 0000000000..2bfce1d53b
--- /dev/null
+++ b/utils/wpseditor/libwps/src/dummies.h
@@ -0,0 +1,44 @@
1#ifndef DUMMIES_H_INCLUDED
2#define DUMMIES_H_INCLUDED
3
4#include <stdio.h>
5
6#include "settings.h"
7#include "gwps.h"
8#include "lang.h"
9#include "powermgmt.h"
10#include "font.h"
11#include "playlist.h"
12
13#include "defs.h"
14
15extern struct font sysfont;
16extern struct user_settings global_settings;
17extern struct wps_state wps_state;
18extern struct gui_wps gui_wps[NB_SCREENS];
19extern struct wps_data wps_datas[NB_SCREENS];
20extern struct cuesheet *curr_cue;
21extern struct cuesheet *temp_cue;
22extern struct system_status global_status;
23extern struct gui_syncstatusbar statusbars;
24extern struct playlist_info current_playlist;
25extern int battery_percent;
26extern struct mp3entry current_song, next_song;
27extern int _audio_status;
28
29charger_input_state_type charger_input_state;
30#if CONFIG_CHARGING >= CHARGING_MONITOR
31extern charge_state_type charge_state;
32#endif
33
34#if defined(CPU_PP) && defined(BOOTLOADER)
35/* We don't enable interrupts in the iPod bootloader, so we need to fake
36the current_tick variable */
37#define current_tick (signed)(USEC_TIMER/10000)
38#else
39extern volatile long current_tick;
40#endif
41
42void dummies_init();
43
44#endif /*DUMMIES_H_INCLUDED*/