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.

19 lines
582 B

  1. /*--------------------------------------------------------------------------*
  2. *
  3. * Microsoft Windows
  4. * Copyright (C) Microsoft Corporation, 1992 - 1999
  5. *
  6. * File: popwarn.h
  7. *
  8. * Contents: This file pops the current compiler's warning state from
  9. * the stack, if the compiler supports it.
  10. *
  11. * pushwarn.h is the complement to this file.
  12. *
  13. * History: 17-Nov-98 jeffro Created
  14. *
  15. *--------------------------------------------------------------------------*/
  16. #if (_MSC_VER >= 1200)
  17. #pragma warning (pop)
  18. #endif