How to close a device handle in Win 8 Metro Style App ?
-
19 เมษายน 2555 8: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
ตอบทั้งหมด
-
19 เมษายน 2555 21:48ผู้ดูแล
Cary,
What would closing the handle on app suspend accomplish?
Best Wishes - Eric
-
20 เมษายน 2555 5: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
- แก้ไขโดย Cary_Win8 20 เมษายน 2555 6:19
-
20 เมษายน 2555 23:45ผู้ดูแล
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
- เสนอเป็นคำตอบโดย Eric Hanson-MSFTMicrosoft, Moderator 22 เมษายน 2555 1:17
- ทำเครื่องหมายเป็นคำตอบโดย Bob_BaoMVP, Moderator 7 พฤษภาคม 2555 10:29