bug fix: compilation error in VS2013 64bit
This commit is contained in:
parent
ef1b9d6b20
commit
e5a98aa1d5
1 changed files with 1 additions and 1 deletions
|
@ -101,7 +101,7 @@ namespace
|
||||||
if (user32Dll)
|
if (user32Dll)
|
||||||
{
|
{
|
||||||
typedef BOOL (WINAPI* SetProcessDPIAwareFuncType)(void);
|
typedef BOOL (WINAPI* SetProcessDPIAwareFuncType)(void);
|
||||||
SetProcessDPIAwareFuncType SetProcessDPIAwareFunc = GetProcAddress(user32Dll, "SetProcessDPIAware");
|
SetProcessDPIAwareFuncType SetProcessDPIAwareFunc = reinterpret_cast<SetProcessDPIAwareFuncType>(GetProcAddress(user32Dll, "SetProcessDPIAware"));
|
||||||
|
|
||||||
if (SetProcessDPIAwareFunc)
|
if (SetProcessDPIAwareFunc)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue