Windows Vista Tips

Windows Vista Tips > Newsgroups > Windows Vista Drivers > Capture Mouse Data in FIlter

Reply
Thread Tools Display Modes

Capture Mouse Data in FIlter

 
 
Junior Member
Join Date: Nov 2010
Posts: 2

 
      11-15-2010
I have successfully implemented a mouse filter to modify the x and y data in the ServiceCallback routine using the DDK example. Now I would like to get extra data from the input packets that are sent from the port driver. For example, my hardware sends mouse data using standard HID descriptor shown below, but I have additinally added a wireless id in the report. Since the SerivceCallback routine input data are of type PMOUSE_INPUT_DATA it does not include the wireless id data. How and where can I can this extra data from.

0x05, 0x01, // USAGE_PAGE (Generic Desktop)
0x09, 0x30, // USAGE (X)
0x09, 0x31, // USAGE (Y)
0x09, 0x22, // Usage (Wireless ID)
0x15, 0x81, // LOGICAL_MINIMUM (-127)
0x25, 0x81, // LOGICAL_MAXIMUM (-127)
0x75, 0x08, // REPORT_SIZE (8)
0x95, 0x02, // REPORT_COUNT (3)

Thanks in advance - jalong
 
Reply With Quote
 
 
 
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
HID Non user input data filer won't install James Windows Update 15 08-30-2010 12:43 PM
Problem Microsoft Wireless Laser Mouse 8000 - Bluetooth mark Windows Vista Hardware 13 04-08-2010 05:27 PM
Vista32, new driver? & USB Mouse/Keyboard not working Scott J. Stringfellow Windows Vista Hardware 27 04-01-2010 05:22 PM
how to sync Outlook data correctly with ActiveSync after XP reinst Jamel Irief ActiveSync 1 12-18-2007 02:39 AM
updating HID-compliant mouse michael Windows Vista Hardware 5 10-24-2007 06:09 PM



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59