added concrete implementations of putc(), getc(), getchar() and gets()
[tangerine.git] / arch / i386-pc / Drivers / mouse.hidd / drv_usb.c
blobfbc24685b270a2746329815b425693255a8a8d79
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: USB mouse driver.
6 Lang: English.
7 */
9 #include <proto/exec.h>
10 #include <proto/utility.h>
11 #include <proto/oop.h>
12 #include <oop/oop.h>
14 #include <exec/alerts.h>
15 #include <exec/memory.h>
17 #include <hidd/hidd.h>
18 #include <hidd/mouse.h>
19 /* #include <hidd/usb.h> */
20 #include <devices/inputevent.h>
22 #include "mouse.h"
24 #define DEBUG 0
25 #include <aros/debug.h>
27 #define HiddMouseAB (MSD(cl)->hiddMouseAB)
29 /* defines for buttonstate */
31 #define LEFT_BUTTON 1
32 #define RIGHT_BUTTON 2
33 #define MIDDLE_BUTTON 4
35 /***** Test procedure ***********************************************/
37 int test_mouse_usb(OOP_Class *cl, OOP_Object *o)
39 return 0; /* Report no USB mouse */
42 void dispose_mouse_usb(OOP_Class *cl, OOP_Object *o)
44 return;
47 /***** *************************************************************/