summaryrefslogtreecommitdiff
path: root/firmware/export
diff options
context:
space:
mode:
authorChristian Gmeiner <christian.gmeiner@gmail.com>2005-05-30 00:00:22 +0000
committerChristian Gmeiner <christian.gmeiner@gmail.com>2005-05-30 00:00:22 +0000
commit7477c09b42a02484dadbe8da700e8c18e29ffef2 (patch)
tree412177813e4dbf2d9c45b4c50cd3366139ec695a /firmware/export
parent4cdc7ca987d45d4d790281c21f3b7190beefaf65 (diff)
downloadrockbox-7477c09b42a02484dadbe8da700e8c18e29ffef2.zip
rockbox-7477c09b42a02484dadbe8da700e8c18e29ffef2.tar.gz
rockbox-7477c09b42a02484dadbe8da700e8c18e29ffef2.tar.bz2
rockbox-7477c09b42a02484dadbe8da700e8c18e29ffef2.tar.xz
Remote LCD: added own backlight timeout stuff
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6533 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export')
-rw-r--r--firmware/export/backlight.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/firmware/export/backlight.h b/firmware/export/backlight.h
index 6025fba..ab1f905 100644
--- a/firmware/export/backlight.h
+++ b/firmware/export/backlight.h
@@ -19,6 +19,8 @@
#ifndef BACKLIGHT_H
#define BACKLIGHT_H
+#include "config.h"
+
void backlight_init(void);
void backlight_on(void);
void backlight_off(void);
@@ -31,4 +33,8 @@ void remote_backlight_on(void);
void remote_backlight_off(void);
extern const char backlight_timeout_value[];
+#ifdef HAVE_REMOTE_LCD
+void remote_backlight_set_timeout(int index);
+#endif
+
#endif