The situation I'm currently in is that I have some custom hardware that there are two tools that inferface too. Both tools subscribe to the windows USB event for the correct VID/PID of the custom hardware. Both tools work on their own but I have noticed when run together I get different behavior based on the order that the tools are opened and on which OS.
If I open tool B first on Windows 7 or Windows XP everything works as expected in both tools.
If I open tool A first on Windows 7 then tool B is unable to talk to the device, it gets the windows callback but when trying to access the device its unable to open the handle.
If I open tool A first on Windows XP then tool B is able to talk to the device but now tool A is not able to. It will receive failures to open the usb handle.
I realize this is a vauge explination but truthfully I dont have much more details than this. Tool B talks to the device for only a few miliseconds to quickly poll it. Tool A is more complicated but it has a 20 second delay after getting the winproc callback before it tries to talk to the device, which should give tool B its chance to poll.
The behaviors are repetable and consistant. Any idea why it seems to make a big different what order the windows hooking is done? If there is any other additional information I can gather to be helpful please let me know how to do so and I will.
thanks!