mirror of
https://github.com/reactos/reactos.git
synced 2025-05-18 00:31:27 +00:00
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:
parent
31015fdb85
commit
c70b54758f
1 changed files with 5 additions and 0 deletions
|
@ -1,6 +1,11 @@
|
||||||
#ifndef _delayimp_h
|
#ifndef _delayimp_h
|
||||||
#define _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
|
#define DELAYLOAD_VERSION 0x200
|
||||||
|
|
||||||
typedef DWORD RVA;
|
typedef DWORD RVA;
|
||||||
|
|
Loading…
Reference in a new issue