Partager via


Exécution de diagnostics sur un appareil WIA

Le service WIA peut tester les fonctionnalités d’un appareil status en appelant la méthode IStiUSD::D iagnostic. Le minidriver WIA doit case activée l’état fonctionnel actuel du matériel et signaler les résultats. La méthode IStiUSD::D iagnostic est également appelée lorsque le bouton « Appareil de test » est appuyé sur la page de propriétés par défaut de l’appareil WIA (page de propriétés fournie par Microsoft).

L’exemple suivant montre une implémentation de la méthode IStiUSD::D iagnostic .

STDMETHODIMP CWIADevice::Diagnostic(LPSTI_DIAG pBuffer)
{
  //
  // If the caller did not pass in the correct parameters,
  // then fail the call with E_INVALIDARG.
  //

  if(!pBuffer){
     return E_INVALIDARG;
  }

  //
  // initialize response buffer
  //

  memset(&pBuffer->sErrorInfo,0,sizeof(pBuffer->sErrorInfo));

  pBuffer->sErrorInfo.dwGenericError = NOERROR;
  pBuffer->sErrorInfo.dwVendorError  = 0;

  HRESULT hr = S_OK;
  if(!TestMyDeviceFunctionalty()) {
    pBuffer->sErrorInfo.dwGenericError = E_FAIL; // win32 generic error code
    pBuffer->sErrorInfo.dwVendorError  = 1234;   // device specific vendor error code
  }
  return hr;
}