Add 2008 to the copyright notice.
[Rockbox.git] / apps / plugins / lib / helper.h
blob744ad4dbd32fb7102880e44b8e12aabe1a657118
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2007 by Peter D'Hoye
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 ****************************************************************************/
19 #ifndef _LIB_HELPER_H_
20 #define _LIB_HELPER_H_
22 #include "plugin.h"
24 /**
25 * Backlight on/off operations
27 void backlight_force_on(struct plugin_api* rb);
28 void backlight_use_settings(struct plugin_api* rb);
29 #ifdef HAVE_REMOTE_LCD
30 void remote_backlight_force_on(struct plugin_api* rb);
31 void remote_backlight_use_settings(struct plugin_api* rb);
32 #endif
34 #endif