INTEGRATION: CWS mingwport06 (1.5.138); FILE MERGED

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

View file

@ -4,9 +4,9 @@
*
* $RCSfile: DllGetVersion.cpp,v $
*
* $Revision: 1.5 $
* $Revision: 1.6 $
*
* last change: $Author: vg $ $Date: 2006-09-25 13:15:48 $
* last change: $Author: kz $ $Date: 2007-09-06 13:49:36 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@ -34,10 +34,14 @@
************************************************************************/
#define WIN32_LEAN_AND_MEAN
#ifdef _MSC_VER
#pragma warning(push,1)
#endif
#include <windows.h>
#include <shlwapi.h>
#ifdef _MSC_VER
#pragma warning(pop)
#endif
#include <malloc.h>
extern HMODULE UWINAPI_BaseAddress;