aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJoel Bodenmann <joel@unormal.org>2012-12-18 19:46:27 +0100
committerJoel Bodenmann <joel@unormal.org>2012-12-18 19:46:27 +0100
commit9c738e00fab50b4bf763fa5254e6542aff7fa78c (patch)
tree74e8a1420d1efa4c73539d86f3674a07ef94b6af /src
parente2b9c5cfce4eb7bcec6c8a7ff49738b668df7ba4 (diff)
downloaduGFX-9c738e00fab50b4bf763fa5254e6542aff7fa78c.tar.gz
uGFX-9c738e00fab50b4bf763fa5254e6542aff7fa78c.tar.bz2
uGFX-9c738e00fab50b4bf763fa5254e6542aff7fa78c.zip
ginput/mouse doxygen
Diffstat (limited to 'src')
-rw-r--r--src/ginput/mouse.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/ginput/mouse.c b/src/ginput/mouse.c
index 5f1fec4d..f11e2c82 100644
--- a/src/ginput/mouse.c
+++ b/src/ginput/mouse.c
@@ -322,7 +322,6 @@ static void MousePoll(void *param) {
}
}
-/* Mouse Functions */
GSourceHandle ginputGetMouse(uint16_t instance) {
#if GINPUT_MOUSE_NEED_CALIBRATION
Calibration *pc;
@@ -377,10 +376,6 @@ GSourceHandle ginputGetMouse(uint16_t instance) {
return (GSourceHandle)&MouseConfig;
}
-/* Get the current mouse position and button status.
- * Unlike a listener event, this status cannot record meta events such as "CLICK"
- * Returns FALSE on error (eg invalid instance)
- */
bool_t ginputGetMouseStatus(uint16_t instance, GEventMouse *pe) {
if (instance || (MouseConfig.flags & (FLG_INIT_DONE|FLG_IN_CAL)) != FLG_INIT_DONE)
return FALSE;
@@ -401,9 +396,6 @@ bool_t ginputGetMouseStatus(uint16_t instance, GEventMouse *pe) {
return TRUE;
}
-/* Run a mouse calibration.
- * Returns FALSE if the driver doesn't support it or if the handle is invalid.
- */
bool_t ginputCalibrateMouse(uint16_t instance) {
#if !GINPUT_MOUSE_NEED_CALIBRATION
(void) instance;