From 9c738e00fab50b4bf763fa5254e6542aff7fa78c Mon Sep 17 00:00:00 2001 From: Joel Bodenmann Date: Tue, 18 Dec 2012 19:46:27 +0100 Subject: ginput/mouse doxygen --- src/ginput/mouse.c | 8 -------- 1 file changed, 8 deletions(-) (limited to 'src') 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; -- cgit v1.2.3