INTEGRATION: CWS mingwport06 (1.7.62); FILE MERGED

2007/08/24 13:06:54 vg 1.7.62.1: #i75499# pragma is for MSVC
This commit is contained in:
Kurt Zenker 2007-09-06 12:49:52 +00:00
parent 045f2471c8
commit 6922dfe20e

View file

@ -4,9 +4,9 @@
*
* $RCSfile: DllMain.cpp,v $
*
* $Revision: 1.7 $
* $Revision: 1.8 $
*
* last change: $Author: vg $ $Date: 2007-03-26 14:26:11 $
* last change: $Author: kz $ $Date: 2007-09-06 13:49:52 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@ -34,9 +34,13 @@
************************************************************************/
#define WIN32_LEAN_AND_MEAN
#ifdef _MSC_VER
#pragma warning(push,1) // disable warnings within system headers
#endif
#include <windows.h>
#ifdef _MSC_VER
#pragma warning(pop)
#endif
#include <malloc.h>
#define _MBCS
#include <tchar.h>