Leaked source code of windows server 2003
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
703 B

  1. #ifndef __DFS_WARNING_H__
  2. #define __DFS_WARNING_H__
  3. #include "warning.h"
  4. #pragma warning(error:4100) // Unreferenced formal parameter
  5. #pragma warning(error:4702) // Unreachable code
  6. #pragma warning(error:4705) // Statement has no effect
  7. #pragma warning(error:4706) // assignment w/i conditional expression
  8. #pragma warning(error:4709) // command operator w/o index expression
  9. #pragma warning(error:4101) // Unreferenced local variable
  10. #pragma warning(error:4208) // delete[exp] - exp evaluated but ignored
  11. #pragma warning(error:4242) // convertion possible loss of data
  12. #pragma warning(error:4532) // jump out of __finally block
  13. #endif // defined __DFS_WARNING_H__