mirror of https://github.com/procxx/kepka.git
Fixed dynamic library loading for Windows XP.
Versioned dll removed, loading from combase.dll instead.
This commit is contained in:
parent
d089d4e692
commit
e38b7cd465
|
@ -43,7 +43,6 @@ HINSTANCE LibShell32;
|
||||||
HINSTANCE LibWtsApi32;
|
HINSTANCE LibWtsApi32;
|
||||||
HINSTANCE LibPropSys;
|
HINSTANCE LibPropSys;
|
||||||
HINSTANCE LibComBase;
|
HINSTANCE LibComBase;
|
||||||
HINSTANCE LibWinRtString;
|
|
||||||
|
|
||||||
void start() {
|
void start() {
|
||||||
LibUxTheme = LoadLibrary(L"UXTHEME.DLL");
|
LibUxTheme = LoadLibrary(L"UXTHEME.DLL");
|
||||||
|
@ -66,10 +65,8 @@ void start() {
|
||||||
|
|
||||||
LibComBase = LoadLibrary(L"COMBASE.DLL");
|
LibComBase = LoadLibrary(L"COMBASE.DLL");
|
||||||
load(LibComBase, "RoGetActivationFactory", RoGetActivationFactory);
|
load(LibComBase, "RoGetActivationFactory", RoGetActivationFactory);
|
||||||
|
load(LibComBase, "WindowsCreateStringReference", WindowsCreateStringReference);
|
||||||
LibWinRtString = LoadLibrary(L"api-ms-win-core-winrt-string-l1-1-0.dll");
|
load(LibComBase, "WindowsDeleteString", WindowsDeleteString);
|
||||||
load(LibWinRtString, "WindowsCreateStringReference", WindowsCreateStringReference);
|
|
||||||
load(LibWinRtString, "WindowsDeleteString", WindowsDeleteString);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace Dlls
|
} // namespace Dlls
|
||||||
|
|
|
@ -98,7 +98,7 @@ namespace {
|
||||||
_PsInitializer() {
|
_PsInitializer() {
|
||||||
Dlls::start();
|
Dlls::start();
|
||||||
|
|
||||||
useOpenWith = (Dlls::SHAssocEnumHandlers != nullptr) && (SHCreateItemFromParsingName != nullptr);
|
useOpenWith = (Dlls::SHAssocEnumHandlers != nullptr) && (Dlls::SHCreateItemFromParsingName != nullptr);
|
||||||
useOpenAs = (Dlls::SHOpenWithDialog != nullptr) || (Dlls::OpenAs_RunDLL != nullptr);
|
useOpenAs = (Dlls::SHOpenWithDialog != nullptr) || (Dlls::OpenAs_RunDLL != nullptr);
|
||||||
useShellapi = (Dlls::SHQueryUserNotificationState != nullptr);
|
useShellapi = (Dlls::SHQueryUserNotificationState != nullptr);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue