1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2006 Dave Chapman
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
30 bool load_main_backdrop(const char* filename
);
31 bool load_wps_backdrop(const char* filename
);
33 void unload_main_backdrop(void);
34 void unload_wps_backdrop(void);
36 void show_main_backdrop(void);
37 void show_wps_backdrop(void);
39 #endif /* LCD_DEPTH > 1 */
41 #if defined(HAVE_REMOTE_LCD) && LCD_REMOTE_DEPTH > 1
42 bool load_remote_wps_backdrop(const char* filename
);
43 void unload_remote_wps_backdrop(void);
44 void show_remote_wps_backdrop(void);
45 void show_remote_main_backdrop(void); /* only clears the wps backdrop */
48 #endif /* _BACKDROP_H */