diff options
| author | Karl Kurbjun <kkurbjun@gmail.com> | 2009-10-05 02:09:00 +0000 |
|---|---|---|
| committer | Karl Kurbjun <kkurbjun@gmail.com> | 2009-10-05 02:09:00 +0000 |
| commit | fb50f468666958564656386b7181a4973e042ebc (patch) | |
| tree | 41aa7fc0b690d2690acf281ce3094d1de10c54fb /apps/plugin.h | |
| parent | 436776ebb8645f4393bafd01856d7ba2abe83356 (diff) | |
| download | rockbox-fb50f468666958564656386b7181a4973e042ebc.zip rockbox-fb50f468666958564656386b7181a4973e042ebc.tar.gz rockbox-fb50f468666958564656386b7181a4973e042ebc.tar.bz2 rockbox-fb50f468666958564656386b7181a4973e042ebc.tar.xz | |
Button Driver: Add button_status support with data - allows for reading the /immediate/ value of the touchscreen
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22933 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 766a309..344026f 100644 --- a/apps/plugin.h +++ b/apps/plugin.h @@ -836,6 +836,8 @@ struct plugin_api { const char *appsversion; /* new stuff at the end, sort into place next time the API gets incompatible */ + + int (*button_status_wdata)(int *pdata); }; /* plugin header */ |