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.

30 lines
820 B

  1. // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  2. //
  3. // _EXCEPT.H
  4. //
  5. // EXCEPT precompiled header
  6. //
  7. //
  8. // Copyright 1986-1998 Microsoft Corporation, All Rights Reserved
  9. //
  10. #ifndef __EXCEPT_H_
  11. #define __EXCEPT_H_
  12. // Disable unnecessary (i.e. harmless) warnings
  13. //
  14. #pragma warning(disable:4100) // unref formal parameter (caused by STL templates)
  15. #pragma warning(disable:4127) // conditional expression is constant */
  16. #pragma warning(disable:4201) // nameless struct/union
  17. #pragma warning(disable:4514) // unreferenced inline function
  18. #pragma warning(disable:4710) // (inline) function not expanded
  19. // Windows headers
  20. //
  21. #include <windows.h>
  22. // _EXCEPT headers
  23. //
  24. #include <except.h> // Exception throwing/handling interfaces
  25. #endif // !defined(__EXCEPT_H_)