mirror-chatterino2/src/util/nativeeventhelper.hpp

24 lines
359 B
C++
Raw Normal View History

2017-09-22 00:50:43 +02:00
#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