I am trying to port some code using VC++\'s try-except statement to MinGW:
bool success = true; __try { //... } __except ((EXCEPTION_STACK_OVERFLOW == G
You might want to look into LibSEH for adding Structured Exception Handling compatibility for MinGW.