Respondida How to close a device handle in Win 8 Metro Style App ?

  • jueves, 19 de abril de 2012 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

Todas las respuestas

  • jueves, 19 de abril de 2012 21:48
    Moderador
     
     

    Cary,

    What would closing the handle on app suspend accomplish?

    Best Wishes - Eric 

  • viernes, 20 de abril de 2012 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




    • Editado Cary_Win8 viernes, 20 de abril de 2012 6:01
    • Editado Cary_Win8 viernes, 20 de abril de 2012 6:02
    • Editado Cary_Win8 viernes, 20 de abril de 2012 6:19
    •  
  • viernes, 20 de abril de 2012 23:45
    Moderador
     
     Respondida

    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