diff options
author | mikalair <mikalair@outlook.com> | 2017-08-23 17:40:30 +0300 |
---|---|---|
committer | mikalair <mikalair@outlook.com> | 2017-08-23 17:40:30 +0300 |
commit | 0174b54e00f5b2a9693e0b1ab0a4f569ff517a3a (patch) | |
tree | 5ec3db389c0c932226c40ae98178ea4d86da17f3 /src | |
parent | 33afeb0cfcf57556fcacd9933a9fbbce5ba1cc02 (diff) |
fix xp support
Diffstat (limited to 'src')
-rw-r--r-- | src/mir_app/src/modules.cpp | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/mir_app/src/modules.cpp b/src/mir_app/src/modules.cpp index 46892c6837..ff9117276b 100644 --- a/src/mir_app/src/modules.cpp +++ b/src/mir_app/src/modules.cpp @@ -94,9 +94,15 @@ int LoadDefaultModules(void) // load database drivers & service plugins without executing their Load()
if (LoadNewPluginsModuleInfos()) return 1;
- if (GetPrivateProfileInt(L"Interface", L"DpiAware", 0, mirandabootini) == 1)
- SetProcessDPIAware();
+ if (GetPrivateProfileInt(L"Interface", L"DpiAware", 0, mirandabootini) == 1) {
+ typedef BOOL (WINAPI * SetProcessDPIAware_t)(void);
+ SetProcessDPIAware_t pfn = (SetProcessDPIAware_t)GetProcAddress(GetModuleHandleW(L"user32"), "SetProcessDPIAware");
+ if (pfn != nullptr) {
+ pfn();
+ }
+ }
+
switch (LoadDefaultServiceModePlugin()) {
case SERVICE_CONTINUE: // continue loading Miranda normally
case SERVICE_ONLYDB: // load database and go to the message cycle
|