diff options
| author | Kevin Ferrare <kevin@rockbox.org> | 2005-11-22 03:38:07 +0000 |
|---|---|---|
| committer | Kevin Ferrare <kevin@rockbox.org> | 2005-11-22 03:38:07 +0000 |
| commit | 74b6af93b1436dc61e8f10b3aff3c79face5faba (patch) | |
| tree | f5d17c6b0adb9f6cc448a112b309a6dff7451a76 /apps/screen_access.h | |
| parent | 8042640ce967014f10dbc0e3f382cd1876310b66 (diff) | |
| download | rockbox-74b6af93b1436dc61e8f10b3aff3c79face5faba.zip rockbox-74b6af93b1436dc61e8f10b3aff3c79face5faba.tar.gz rockbox-74b6af93b1436dc61e8f10b3aff3c79face5faba.tar.bz2 rockbox-74b6af93b1436dc61e8f10b3aff3c79face5faba.tar.xz | |
Added multi-screen support for quickscreen (mostly rewritten from scratch) and USB screen ; just looking at the hour makes me think it could be buggy
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8039 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/screen_access.h')
| -rw-r--r-- | apps/screen_access.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/screen_access.h b/apps/screen_access.h index 7f235a2..430d5ab 100644 --- a/apps/screen_access.h +++ b/apps/screen_access.h @@ -103,7 +103,8 @@ struct screen #if defined(HAVE_LCD_BITMAP) || defined(HAVE_REMOTE_LCD) || defined(SIMULATOR) void (*update)(void); #endif - + void (*backlight_on)(void); + void (*backlight_off)(void); void (*puts)(int x, int y, const unsigned char *str); }; |