1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2006 Dave Chapman
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
18 ****************************************************************************/
28 bool load_main_backdrop(char* filename
);
29 bool load_wps_backdrop(char* filename
);
31 void unload_main_backdrop(void);
32 void unload_wps_backdrop(void);
34 void show_main_backdrop(void);
35 void show_wps_backdrop(void);
37 #endif /* LCD_DEPTH > 1 */
39 #if defined(HAVE_REMOTE_LCD) && LCD_REMOTE_DEPTH > 1
40 bool load_remote_wps_backdrop(char* filename
);
41 void unload_remote_wps_backdrop(void);
42 void show_remote_wps_backdrop(void);
43 void show_remote_main_backdrop(void); /* only clears the wps backdrop */
46 #endif /* _BACKDROP_H */