Ejemplo de macro para filtrar códigos de error
Importante
La funcionalidad de WSD Challenger ha quedado en desuso y toda la documentación relacionada con WSD Challenger se quitará en 2018.
En el ejemplo de macro siguiente se filtran los códigos de error de comunicación.
//
// Example of a macro to filter device communication errors
//
#define WSD_COMMUNICATION_ERROR(hr) \
((HRESULT_FROM_WIN32(ERROR_WINHTTP_CANNOT_CONNECT)) == hr) || \
((HRESULT_FROM_WIN32(ERROR_WINHTTP_CONNECTION_ERROR)) == hr) || \
((HRESULT_FROM_WIN32(ERROR_WINHTTP_TIMEOUT)) == hr) || \
((HRESULT_FROM_WIN32(ERROR_TIMEOUT)) == hr) || \
((HRESULT_FROM_WIN32(ERROR_WINHTTP_NAME_NOT_RESOLVED)) == hr))