mirror of
https://github.com/reactos/reactos.git
synced 2025-06-20 07:36:05 +00:00
[EXPLORER]
* Use LoadLibrary instead of GetModuleHandle in the wrapper of WinList_Init. * Shdocvw was never loaded till that point so WinList_Init was not called. * Should fix Opening link location in windows. svn path=/trunk/; revision=65611
This commit is contained in:
parent
c960788a1d
commit
4b301b04e1
1 changed files with 1 additions and 1 deletions
|
@ -135,7 +135,7 @@ DWORD WINAPI _WinList_Init(void)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
hFallback = GetModuleHandleW(L"shdocvw.dll");
|
hFallback = LoadLibraryW(L"shdocvw.dll");
|
||||||
|
|
||||||
if (hFallback)
|
if (hFallback)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue