diff options
| author | Jörg Hohensohn <hohensoh@rockbox.org> | 2003-12-15 07:44:43 +0000 |
|---|---|---|
| committer | Jörg Hohensohn <hohensoh@rockbox.org> | 2003-12-15 07:44:43 +0000 |
| commit | bd8f448fd0cb10336c7dbc9a01e0ada0380c1c61 (patch) | |
| tree | 92f28d3f57ec946cea2e72b1a62108ccc69dad2c /apps/plugin.c | |
| parent | 50f63e334aa549f868b4b28c389b7ea34ffa9b4f (diff) | |
| download | rockbox-bd8f448fd0cb10336c7dbc9a01e0ada0380c1c61.zip rockbox-bd8f448fd0cb10336c7dbc9a01e0ada0380c1c61.tar.gz rockbox-bd8f448fd0cb10336c7dbc9a01e0ada0380c1c61.tar.bz2 rockbox-bd8f448fd0cb10336c7dbc9a01e0ada0380c1c61.tar.xz | |
the video player plugin and file the type / plugin API for it
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4145 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.c')
| -rw-r--r-- | apps/plugin.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/apps/plugin.c b/apps/plugin.c index 7a88a89..d711027 100644 --- a/apps/plugin.c +++ b/apps/plugin.c @@ -155,6 +155,14 @@ static struct plugin_api rockbox_api = { atoi, get_time, plugin_get_buffer, + + /* new stuff at the end, sort into place next time the API gets incompatible */ + +#ifndef HAVE_LCD_CHARCELLS + &lcd_framebuffer[0][0], + lcd_blit, +#endif + yield, }; int plugin_load(char* plugin, void* parameter) |