mirror of
https://github.com/reactos/reactos.git
synced 2026-05-31 08:17:09 +08:00
[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:
committed by
Mark Jansen
parent
7916d0ae3e
commit
9415f94c3a
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user