Add hack for gnu ld like in mingw lib, as it uses _image_base__ insetad of __ImageBase

svn path=/trunk/; revision=42222
This commit is contained in:
Timo Kreuzer 2009-07-26 00:22:57 +00:00
parent 31015fdb85
commit c70b54758f

View file

@ -1,6 +1,11 @@
#ifndef _delayimp_h
#define _delayimp_h
#ifdef __GNUC__
/* Hack, for bug in ld. Will be removed soon. */
#define __ImageBase _image_base__
#endif
#define DELAYLOAD_VERSION 0x200
typedef DWORD RVA;