michael@0: /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- michael@0: * vim: set ts=8 sts=4 et sw=4 tw=99: michael@0: * This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: #ifndef jswin_h michael@0: #define jswin_h michael@0: michael@0: /* michael@0: * This file is a wrapper around to prevent the mangling of michael@0: * various function names throughout the codebase. michael@0: */ michael@0: michael@0: #ifdef XP_WIN michael@0: # include michael@0: # undef min michael@0: # undef max michael@0: # undef GetProp michael@0: # undef SetProp michael@0: # undef CONST michael@0: # undef STRICT michael@0: # undef LEGACY michael@0: # undef THIS michael@0: # undef PASSTHROUGH michael@0: #endif michael@0: michael@0: #endif /* jswin_h */