Home
last modified time | relevance | path

Searched refs:hShcore (Results 1 – 9 of 9) sorted by relevance

/dports/games/vkquake/vkQuake-1.12.2/Quake/
H A Dsys_sdl_win.c180 HMODULE hUser32, hShcore; in Sys_SetDPIAware() local
189 hShcore = LoadLibraryA ("Shcore.dll"); in Sys_SetDPIAware()
191 …setDPIAwareness = (SetProcessDPIAwarenessFunc) (hShcore ? GetProcAddress (hShcore, "SetProcessDpiA… in Sys_SetDPIAware()
199 if (hShcore) in Sys_SetDPIAware()
200 FreeLibrary (hShcore); in Sys_SetDPIAware()
/dports/games/uhexen2/hexen2source-1.5.9/engine/hexenworld/client/
H A Dsys_win.c218 HMODULE hUser32, hShcore; in Sys_SetDPIAware() local
226 hShcore = LoadLibraryA ("Shcore.dll"); in Sys_SetDPIAware()
228 …setDPIAwareness = (SetProcessDPIAwarenessFunc) (hShcore ? GetProcAddress (hShcore, "SetProcessDpiA… in Sys_SetDPIAware()
236 if (hShcore) in Sys_SetDPIAware()
237 FreeLibrary (hShcore); in Sys_SetDPIAware()
/dports/games/uhexen2/hexen2source-1.5.9/engine/hexen2/
H A Dsys_win.c251 HMODULE hUser32, hShcore; in Sys_SetDPIAware() local
259 hShcore = LoadLibraryA ("Shcore.dll"); in Sys_SetDPIAware()
261 …setDPIAwareness = (SetProcessDPIAwarenessFunc) (hShcore ? GetProcAddress (hShcore, "SetProcessDpiA… in Sys_SetDPIAware()
269 if (hShcore) in Sys_SetDPIAware()
270 FreeLibrary (hShcore); in Sys_SetDPIAware()
/dports/editors/lazarus/lazarus/lcl/interfaces/win32/
H A Dwin32int.pp303 hShcore: Windows.HMODULE;
307 hShcore := GetModuleHandle('Shcore');
308 if hShcore<>0 then
309 Pointer(g_pfnGetDpiForMonitor) := GetProcAddress(hShcore, 'GetDpiForMonitor')
/dports/editors/lazarus-qt5/lazarus/lcl/interfaces/win32/
H A Dwin32int.pp303 hShcore: Windows.HMODULE;
307 hShcore := GetModuleHandle('Shcore');
308 if hShcore<>0 then
309 Pointer(g_pfnGetDpiForMonitor) := GetProcAddress(hShcore, 'GetDpiForMonitor')
/dports/editors/lazarus-devel/lazarus-6df7e8756882f7d7f28f662011ee72f21746c580/lcl/interfaces/win32/
H A Dwin32int.pp311 hShcore: Windows.HMODULE;
315 hShcore := GetModuleHandle('Shcore');
316 if hShcore<>0 then
317 Pointer(g_pfnGetDpiForMonitor) := GetProcAddress(hShcore, 'GetDpiForMonitor')
/dports/editors/lazarus-qt5-devel/lazarus-6df7e8756882f7d7f28f662011ee72f21746c580/lcl/interfaces/win32/
H A Dwin32int.pp311 hShcore: Windows.HMODULE;
315 hShcore := GetModuleHandle('Shcore');
316 if hShcore<>0 then
317 Pointer(g_pfnGetDpiForMonitor) := GetProcAddress(hShcore, 'GetDpiForMonitor')
/dports/games/OpenLara/OpenLara-b4b19f2/src/platform/win/
H A Dmain.cpp1038 HMODULE hUser32 = NULL, hShcore = NULL; local
1042 hShcore = LoadLibrary("Shcore.dll");
1046 GetProcAddr(hShcore, _SetProcessDpiAwareness);
/dports/games/warzone2100/warzone2100/lib/sdl/
H A Dmain_sdl.cpp1635 HMODULE hShcore = LoadLibraryW(L"Shcore.dll"); in win_IsProcessDPIAware() local
1636 if (hShcore != NULL) in win_IsProcessDPIAware()
1638 …t<GetProcessDpiAwarenessFunction>(reinterpret_cast<void*>(GetProcAddress(hShcore, "GetProcessDpiAw… in win_IsProcessDPIAware()
1644 FreeLibrary(hShcore); in win_IsProcessDPIAware()
1648 FreeLibrary(hShcore); in win_IsProcessDPIAware()