зеркало из https://github.com/mozilla/gecko-dev.git
Vista - Sets the current process as dpi aware. r=vlad
This commit is contained in:
Родитель
3d78fff7f6
Коммит
37d9e7922d
|
@ -264,6 +264,16 @@ nsToolkit::Startup(HMODULE hModule)
|
|||
wc.lpszMenuName = NULL;
|
||||
wc.lpszClassName = L"nsToolkitClass";
|
||||
VERIFY(::RegisterClassW(&wc));
|
||||
|
||||
// Vista API. Mozilla is DPI Aware.
|
||||
typedef BOOL (*SetProcessDPIAwareFunc)(VOID);
|
||||
|
||||
SetProcessDPIAwareFunc setDPIAware = (SetProcessDPIAwareFunc)
|
||||
GetProcAddress(LoadLibrary("user32.dll"),
|
||||
"SetProcessDPIAware");
|
||||
|
||||
if (setDPIAware)
|
||||
setDPIAware();
|
||||
}
|
||||
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче