MSDN says that "The system broadcasts the DBT_DEVICEQUERYREMOVE device event to request permission to remove a device or piece of media."

On Windows XP its working fine but on Windows 7, my application is not getting DBT_DEVICEQUERYREMOVE event.

What is the issue?

link|improve this question

17% accept rate
It doesn't actually broadcast DBT_DEVICEQUERYREMOVE. It broadcasts the WM_DEVICECHANGE message to top-level windows with the wParam set to DBT_DEVICEQUERYREMOVE. That's not exactly the same thing. Which one are you listening for? – Cody Gray Jan 13 at 11:48
I am listening to WM_DEVICECHANGE with wParam DBT_DEVICEQUERYREMOVE. On Windows 7, application is not getting WM_DEVICECHANGE with wParam DBT_DEVICEQUERYREMOVE. On Windows XP its working. On Window 7 instead of DBT_DEVICEQUERYREMOVE, DBT_DEVICEREMOVECOMPLETE comes in wParam. – Vaibhav Gade Jan 16 at 5:12
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.