mirror of https://github.com/acidanthera/audk.git
Fix build error with VS2013 toolchain for NT32 Package caused by function redefinition, use #if fix the error.
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Eric Dong <eric.dong@intel.com> Reviewed-by: Liming Gao <liming.gao@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15691 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
40578d09d1
commit
47e255dfa3
|
@ -1,6 +1,6 @@
|
||||||
/**@file
|
/**@file
|
||||||
|
|
||||||
Copyright (c) 2006 - 2013, Intel Corporation. All rights reserved.<BR>
|
Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.<BR>
|
||||||
This program and the accompanying materials
|
This program and the accompanying materials
|
||||||
are licensed and made available under the terms and conditions of the BSD License
|
are licensed and made available under the terms and conditions of the BSD License
|
||||||
which accompanies this distribution. The full text of the license may be found at
|
which accompanies this distribution. The full text of the license may be found at
|
||||||
|
@ -34,7 +34,7 @@ Abstract:
|
||||||
#define GUID _WINNT_DUP_GUID_____
|
#define GUID _WINNT_DUP_GUID_____
|
||||||
#define _LIST_ENTRY _WINNT_DUP_LIST_ENTRY_FORWARD
|
#define _LIST_ENTRY _WINNT_DUP_LIST_ENTRY_FORWARD
|
||||||
#define LIST_ENTRY _WINNT_DUP_LIST_ENTRY
|
#define LIST_ENTRY _WINNT_DUP_LIST_ENTRY
|
||||||
#if defined (MDE_CPU_IA32)
|
#if defined (MDE_CPU_IA32) && (_MSC_VER < 1800)
|
||||||
#define InterlockedIncrement _WINNT_DUP_InterlockedIncrement
|
#define InterlockedIncrement _WINNT_DUP_InterlockedIncrement
|
||||||
#define InterlockedDecrement _WINNT_DUP_InterlockedDecrement
|
#define InterlockedDecrement _WINNT_DUP_InterlockedDecrement
|
||||||
#define InterlockedCompareExchange64 _WINNT_DUP_InterlockedCompareExchange64
|
#define InterlockedCompareExchange64 _WINNT_DUP_InterlockedCompareExchange64
|
||||||
|
|
Loading…
Reference in New Issue