How to close a device handle in Win 8 Metro Style App ?
-
jeudi 19 avril 2012 08:53
Hi All,
I open a device with CreateDeviceAccessInstance(IID_IDeviceIoControl,path,GENERIC_READ,&deviceAccessAsync).
I would like to close the device when app got suspended. But there is no such an API.
I wonder how could I close the device handle ?
CloseHandle take a handle as the argument when the value deviceAccessAsync is of type ComPtr<IDeviceIoControl>.
How to close the device then ?
Regards
Cary
Cary
Toutes les réponses
-
jeudi 19 avril 2012 21:48Modérateur
Cary,
What would closing the handle on app suspend accomplish?
Best Wishes - Eric
-
vendredi 20 avril 2012 05:59
Hi Eric,
Thanks for you reply.
As described in the question, a device handle was opened in the Metro Style App.
And I want to close the device handle when App got suspended, for it's the only chance for the app to close the device handle.
Because suspended app may be killed without being notified by the system. This may cause to resource leakage, for a device was open but never closed.
Is there a suggested solution from Microsoft on how to handle hardware device in Metro Style App?
Regards
Cary
- Modifié Cary_Win8 vendredi 20 avril 2012 06:19
-
vendredi 20 avril 2012 23:45Modérateur
Cary,
If an app is killed, the handle is closed by the system. There’s no chance of a handle leak. If having the handle open means the device isn’t accessible to other applications, or that the device stays in an undesirable state, then it is OK to close it. The handle gets closed when there are no more references to the IDeviceIoControl interface.
Best Wishes - Eric
- Proposé comme réponse Eric Hanson-MSFTMicrosoft Employee, Moderator dimanche 22 avril 2012 01:17
- Marqué comme réponse Bob_BaoMVP, Moderator lundi 7 mai 2012 10:29

