diff options
| author | Karl Kurbjun <kkurbjun@gmail.com> | 2009-08-02 07:05:30 +0000 |
|---|---|---|
| committer | Karl Kurbjun <kkurbjun@gmail.com> | 2009-08-02 07:05:30 +0000 |
| commit | 0131a3873e0cb05bd357326b441f2cbc1884c657 (patch) | |
| tree | bf224f3e36c3b052f3583d5692eae12d9c922f55 /apps/plugin.h | |
| parent | e9b061a7174298c61dd1f935a38654e07f573197 (diff) | |
| download | rockbox-0131a3873e0cb05bd357326b441f2cbc1884c657.zip rockbox-0131a3873e0cb05bd357326b441f2cbc1884c657.tar.gz rockbox-0131a3873e0cb05bd357326b441f2cbc1884c657.tar.bz2 rockbox-0131a3873e0cb05bd357326b441f2cbc1884c657.tar.xz | |
Pluginlib: Add support for general buttons. Add menu and quit buttons to Reversi. MRobe 500: Modify touch handler to return the previous data always rather than 0 when there is no touch.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22110 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.h')
| -rw-r--r-- | apps/plugin.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/plugin.h b/apps/plugin.h index 3809486..d2130f4 100644 --- a/apps/plugin.h +++ b/apps/plugin.h @@ -836,6 +836,8 @@ struct plugin_api { #if defined(HAVE_USBSTACK) && defined(USB_ENABLE_HID) void (*usb_hid_send)(usage_page_t usage_page, int id); #endif + + void (*lcd_set_viewport)(struct viewport* vp); }; /* plugin header */ |