_set_com_error_handler
Spécifique à Microsoft
Substitue la fonction par défaut utilisée pour la gestion des erreurs COM.
void __stdcall _set_com_error_handler(
void (__stdcall *pHandler)(
HRESULT hr,
IErrorInfo* perrinfo
)
);
Paramètres
pHandler
Pointeur vers une fonction de substitution.hr
Les informations d'HRESULT .perrinfo
Objet IErrorInfo.
Notes
Par défaut, _com_raise_error gère toutes les erreurs COM.Vous pouvez modifier ce comportement à l'aide de _set_com_error_handler pour appeler votre propre fonction de gestion des erreurs.
La fonction de substitution doit avoir une signature qui est équivalente à celle d' _com_raise_error.
Exemple
// _set_com_error_handler.cpp
// compile with /EHsc
#include <stdio.h>
#include <comdef.h>
#include <comutil.h>
// Importing ado dll to attempt to establish an ado connection.
// Not related to _set_com_error_handler
#import "C:\Program Files\Common Files\System\ado\msado15.dll" no_namespace rename("EOF", "adoEOF")
void __stdcall _My_com_raise_error(HRESULT hr, IErrorInfo* perrinfo)
{
throw "Unable to establish the connection!";
}
int main()
{
_set_com_error_handler(_My_com_raise_error);
_bstr_t bstrEmpty(L"");
_ConnectionPtr Connection = NULL;
try
{
Connection.CreateInstance(__uuidof(Connection));
Connection->Open(bstrEmpty, bstrEmpty, bstrEmpty, 0);
}
catch(char* errorMessage)
{
printf("Exception raised: %s\n", errorMessage);
}
return 0;
}
Configuration requise
en-tête : comdef.h
lib : si « wchar_t est type natif » option du compilateur est activé, l'utilisation comsuppw.lib ou comsuppwd.lib le.Si « wchar_t est natif le type » est désactivé, utiliser comsupp.lib.Pour plus d'informations, consultez /Zc:wchar_t (wchar_t est un type natif).