mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
24 lines
359 B
C++
24 lines
359 B
C++
|
#pragma once
|
||
|
|
||
|
#ifdef USEWINSDK
|
||
|
#include "windows.h"
|
||
|
|
||
|
namespace chatterino {
|
||
|
namespace util {
|
||
|
static bool tryHandleDpiChangedMessage(void *message, int &dpi)
|
||
|
{
|
||
|
MSG *msg = reinterpret_cast<MSG *>(message);
|
||
|
|
||
|
// WM_DPICHANGED
|
||
|
if (msg->message == 0x02E0) {
|
||
|
dpi = HIWORD(msg->wParam);
|
||
|
|
||
|
return true;
|
||
|
}
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#endif
|