summaryrefslogtreecommitdiff
path: root/apps/plugins/lib/touchscreen.h
diff options
context:
space:
mode:
authorMaurus Cuelenaere <mcuelenaere@gmail.com>2008-08-23 09:46:38 +0000
committerMaurus Cuelenaere <mcuelenaere@gmail.com>2008-08-23 09:46:38 +0000
commit1392dc2144a4b1810ba5c421f54e05dc1a3a74c7 (patch)
tree7f7f7d6dd6ce00e8146896456549441d4e8153d7 /apps/plugins/lib/touchscreen.h
parent965d2af61f5035dcf5179b8539785de641a9f015 (diff)
downloadrockbox-1392dc2144a4b1810ba5c421f54e05dc1a3a74c7.tar.gz
rockbox-1392dc2144a4b1810ba5c421f54e05dc1a3a74c7.zip
Commit FS#9308: differentiate between TOUCHPAD & TOUCHSCREEN
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18338 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/lib/touchscreen.h')
-rw-r--r--apps/plugins/lib/touchscreen.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/apps/plugins/lib/touchscreen.h b/apps/plugins/lib/touchscreen.h
index 7050db669b..cd5251e46f 100644
--- a/apps/plugins/lib/touchscreen.h
+++ b/apps/plugins/lib/touchscreen.h
@@ -22,7 +22,9 @@
22#ifndef _PLUGIN_LIB_TOUCHSCREEN_H_ 22#ifndef _PLUGIN_LIB_TOUCHSCREEN_H_
23#define _PLUGIN_LIB_TOUCHSCREEN_H_ 23#define _PLUGIN_LIB_TOUCHSCREEN_H_
24 24
25#ifdef HAVE_TOUCHPAD 25#include "plugin.h"
26
27#ifdef HAVE_TOUCHSCREEN
26 28
27struct ts_mapping 29struct ts_mapping
28{ 30{
@@ -88,5 +90,5 @@ struct ts_raster_button_result
88 90
89struct ts_raster_button_result touchscreen_raster_map_button(struct ts_raster_button_mapping *map, int x, int y, int button); 91struct ts_raster_button_result touchscreen_raster_map_button(struct ts_raster_button_mapping *map, int x, int y, int button);
90 92
91#endif /* HAVE_TOUCHPAD */ 93#endif /* HAVE_TOUCHSCREEN */
92#endif /* _PLUGIN_LIB_TOUCHSCREEN_H_ */ 94#endif /* _PLUGIN_LIB_TOUCHSCREEN_H_ */