Ejemplo de código para desafiar un dispositivo potencialmente desconectado
Importante
La funcionalidad de WSD Challenger ha quedado en desuso y toda la documentación relacionada con WSD Challenger se archivará en la documentación de versiones anteriores.
En el ejemplo de código siguiente se muestra una llamada a la función RegisterDeviceToChallenge (que aparece en el ejemplo de código en Código de ejemplo para implementar métodos auxiliares) para desafiar un dispositivo potencialmente desconectado.
HRESULT hr = S_OK;
if (SUCCEEDED(hr))
{
//
// Activate ScanProxy to retrieve the IScanService interface for it
//
hr = m_pFunctionInstance->QueryService(__uuidof(WSDScanProxy),
__uuidof(IScanService),
(void**) &m_pScanProxy);
if (FAILED(hr))
{
WIAS_ERROR((g_hInst, "IFunctionInstance::QueryService(WSDScanProxy, IScanService) failed, cannot activate ScanProxy, hr = 0x%08X", hr));
if (WSD_COMMUNICATION_ERROR(hr))
{
RegisterDeviceToChallenge();
}
}
}
if (SUCCEEDED(hr))
{
//
// Retrieve the IScanServiceEvents interface from the ScanProxy
//
hr = m_pScanProxy->QueryInterface(__uuidof(IScanServiceEvents), (void**)&m_pScanEvents);
if (FAILED(hr))
{
WIAS_ERROR((g_hInst, "IScanService::QueryInterface(IScanServiceEvents) failed, hr = 0x%08X", hr));
if (WSD_COMMUNICATION_ERROR(hr))
{
RegisterDeviceToChallenge();
}
}
}