vote up 2 vote down star

Hi all,

I'm writing a program in OS X that receives click events from a mouse and a touchpad. When the user clicks at somewhere, the OS sends the device ID, which is just an int, and the position of the cursor to my callback function. I want to know if the click event comes from mouse or touchpad. So, how can I know the device's name from its device ID?

Thank you!

(I'm sorry for my poor English.)

flag
I've added the “iokit” tag to your question, as the answer is likely to have something to do with it. – Peter Hosey Nov 6 at 5:16

1 Answer

vote up 1 vote down

You could look at the IOKit Registry.
As starting point: HID Explorer sample code

To check if the ID you are searching for exists in the IOKit Registry, you can grep the output of the ioreg command line utility:

ioreg |grep 'Track'
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.