Útil, por exemplo, quando você não deseja que seus testes automatizados esperem por um clique nas caixas de diálogo em caso de falha.
#ifdef _WIN32
int stfuHook(int, char*, int* returnValue)
{
if (returnValue)
*returnValue = 0;
return true;
}
#endif
int main(int argc, char * argv[])
{
#ifdef _WIN32
_CrtSetReportHook2(_CRT_RPTHOOK_INSTALL, stfuHook);
#endif
...