Author: tkreuzer Date: Mon Apr 30 20:26:46 2012 New Revision: 56454
URL: http://svn.reactos.org/svn/reactos?rev=56454&view=rev Log: [OLDNAMES] Fix compilation with amd64 MSVC
See issue #7030 for more details.
Modified: trunk/reactos/lib/sdk/crt/oldnames-msvcrt.S
Modified: trunk/reactos/lib/sdk/crt/oldnames-msvcrt.S URL: http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/oldnames-msvcrt... ============================================================================== --- trunk/reactos/lib/sdk/crt/oldnames-msvcrt.S [iso-8859-1] (original) +++ trunk/reactos/lib/sdk/crt/oldnames-msvcrt.S [iso-8859-1] Mon Apr 30 20:26:46 2012 @@ -6,6 +6,7 @@ #define IMPSYM(name) __imp__##name #else #define SYM(name) name +#define IMPSYM(name) __imp_##name #endif
MACRO(CREATE_ALIAS1, alias, target)