Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
470 B

  1. // W4 is too cumbersome. For that matter, even 4701 is painful,
  2. // But, it's still very helpful in catching uninitialized vars.
  3. // Add any other diagnostics here
  4. #include <warning.h>
  5. #pragma warning(error:4701)
  6. #ifndef __cplusplus
  7. #undef try
  8. #undef except
  9. #undef finally
  10. #undef leave
  11. #define try __try
  12. #define except __except
  13. #define finally __finally
  14. #define leave __leave
  15. #endif