forked from len0rd/rockbox
Add wpseditor, the Google Summer of Code 2008 project of Rostislav Chekan. Closes FS#9327
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18362 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
cc31b1fbda
commit
5d22e3cbdd
57 changed files with 3711 additions and 33 deletions
44
utils/wpseditor/libwps/src/dummies.h
Normal file
44
utils/wpseditor/libwps/src/dummies.h
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
#ifndef DUMMIES_H_INCLUDED
|
||||
#define DUMMIES_H_INCLUDED
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
#include "settings.h"
|
||||
#include "gwps.h"
|
||||
#include "lang.h"
|
||||
#include "powermgmt.h"
|
||||
#include "font.h"
|
||||
#include "playlist.h"
|
||||
|
||||
#include "defs.h"
|
||||
|
||||
extern struct font sysfont;
|
||||
extern struct user_settings global_settings;
|
||||
extern struct wps_state wps_state;
|
||||
extern struct gui_wps gui_wps[NB_SCREENS];
|
||||
extern struct wps_data wps_datas[NB_SCREENS];
|
||||
extern struct cuesheet *curr_cue;
|
||||
extern struct cuesheet *temp_cue;
|
||||
extern struct system_status global_status;
|
||||
extern struct gui_syncstatusbar statusbars;
|
||||
extern struct playlist_info current_playlist;
|
||||
extern int battery_percent;
|
||||
extern struct mp3entry current_song, next_song;
|
||||
extern int _audio_status;
|
||||
|
||||
charger_input_state_type charger_input_state;
|
||||
#if CONFIG_CHARGING >= CHARGING_MONITOR
|
||||
extern charge_state_type charge_state;
|
||||
#endif
|
||||
|
||||
#if defined(CPU_PP) && defined(BOOTLOADER)
|
||||
/* We don't enable interrupts in the iPod bootloader, so we need to fake
|
||||
the current_tick variable */
|
||||
#define current_tick (signed)(USEC_TIMER/10000)
|
||||
#else
|
||||
extern volatile long current_tick;
|
||||
#endif
|
||||
|
||||
void dummies_init();
|
||||
|
||||
#endif /*DUMMIES_H_INCLUDED*/
|
||||
Loading…
Add table
Add a link
Reference in a new issue