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.

27 lines
1.0 KiB

  1. // NoWarning.h - Turn off compiler warnings that may be safely
  2. // ignored.
  3. // (c) Copyright Schlumberger Technology Corp., unpublished work, created
  4. // 1999. This computer program includes Confidential, Proprietary
  5. // Information and is a Trade Secret of Schlumberger Technology Corp. All
  6. // use, disclosure, and/or reproduction is prohibited unless authorized
  7. // in writing. All Rights Reserved.
  8. // NOTE: This file should only be included by CCI source files, not by
  9. // any headers included by clients of the CCI--thus the reason for not
  10. // prefixing the name of this file with "cci". Otherwise forced
  11. // inclusion of this header file into clients by the CCI imposes a
  12. // compile-time policy on those clients which may be
  13. // inappropriate/undesirable.
  14. #if !defined(CCI_NOWARNING_H)
  15. #define CCI_NOWARNING_H
  16. // Non-standard extension used: 'extern' before template explicit
  17. // instantiation
  18. #pragma warning(disable : 4231)
  19. // Identifier truncated to 255 in debugger/browser info
  20. #pragma warning(disable : 4786)
  21. #endif // CCI_NOWARNING_H