mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00: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:
parent
7916d0ae3e
commit
9415f94c3a
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue