tags:

views:

22

answers:

1

I have been searching for information on this for about 30mins now and got nothing so far. Does anyone know what HID information is buried within LParam that's returned when the system (in this case windows) reports a system device change? (either removal or arrival)

A: 

Starting from the accepted answer to your previous question, I went to the very first link which says:

Any application with a top-level window can receive basic notifications by processing the WM_DEVICECHANGE message.

Then I clicked on WM_DEVICECHANGE which brought me to another page that says:

lParam

A pointer to a structure that contains event-specific data. Its format depends on the value of the wParam parameter. For more information, refer to the documentation for each event.

Each of the events is linked in the wParam description on this same page.

I hope that describing these steps will help you in future searches.

Cogwheel - Matthew Orlando