[DELAYIMP] Fix 2 Clang-Cl warnings about __pfnDliNotifyHook2Default and __pfnDliFailureHook2Default

"warning: 'extern' variable has an initializer [-Wextern-initializer]"

CORE-14306
This commit is contained in:
Serge Gautherie 2018-02-11 23:33:16 +01:00 committed by Mark Jansen
parent 7916d0ae3e
commit 9415f94c3a

View file

@ -24,8 +24,8 @@ extern PfnDliHook __pfnDliNotifyHook2;
extern PfnDliHook __pfnDliFailureHook2;
/* The fallback symbols */
extern PfnDliHook __pfnDliNotifyHook2Default = NULL;
extern PfnDliHook __pfnDliFailureHook2Default = NULL;
PfnDliHook __pfnDliNotifyHook2Default = NULL;
PfnDliHook __pfnDliFailureHook2Default = NULL;
/* Tell the linker to use the fallback symbols */
#if defined (_M_IX86)