+ // up to VC 7.1 this warning ("calling _set_se_translator() requires /EHa")
+ // is harmless and it's easier to suppress it than use different makefiles
+ // for VC5 and 6 (which don't support /EHa at all) and VC7 (which does
+ // accept it but it seems to change nothing for it anyhow)
+ #if __VISUALC__ <= 1310
+ #pragma warning(disable: 4535)
+ #endif
+
+ // note that the SE translator must be called wxSETranslator!
+ #define DisableAutomaticSETranslator() _set_se_translator(wxSETranslator)
+#else // !__VISUALC__
+ // the other compilers do nothing as stupid by default so nothing to do for
+ // them
+ #define DisableAutomaticSETranslator()
+#endif // __VISUALC__/!__VISUALC__
+
+#endif // _WX_MSW_SEH_H_