michael@0: // michael@0: // Copyright (c) 2002-2012 The ANGLE Project Authors. All rights reserved. michael@0: // Use of this source code is governed by a BSD-style license that can be michael@0: // found in the LICENSE file. michael@0: // michael@0: michael@0: // system.h: Includes Windows system headers and undefines macros that conflict. michael@0: michael@0: #ifndef COMMON_SYSTEM_H michael@0: #define COMMON_SYSTEM_H michael@0: michael@0: #if !defined(WIN32_LEAN_AND_MEAN) michael@0: #define WIN32_LEAN_AND_MEAN michael@0: #endif michael@0: michael@0: #include michael@0: michael@0: #if defined(min) michael@0: #undef min michael@0: #endif michael@0: michael@0: #if defined(max) michael@0: #undef max michael@0: #endif michael@0: michael@0: #endif // COMMON_SYSTEM_H