How to close a device handle in Win 8 Metro Style App ?
-
2012년 4월 19일 목요일 오전 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
모든 응답
-
2012년 4월 19일 목요일 오후 9:48중재자
Cary,
What would closing the handle on app suspend accomplish?
Best Wishes - Eric
-
2012년 4월 20일 금요일 오전 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 2012년 4월 20일 금요일 오전 6:19
-
2012년 4월 20일 금요일 오후 11: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 Employee, Moderator 2012년 4월 22일 일요일 오전 1:17
- 답변으로 표시됨 Bob_BaoMVP, Moderator 2012년 5월 7일 월요일 오전 10:29

