mirror-chatterino2/src/util/WindowsHelper.hpp

21 lines
342 B
C++
Raw Normal View History

#pragma once
#ifdef USEWINSDK
// clang-format off
# include <Windows.h>
# include <boost/optional.hpp>
// clang-format on
2019-10-07 15:46:08 +02:00
namespace chatterino {
boost::optional<UINT> getWindowDpi(HWND hwnd);
void flushClipboard();
bool isRegisteredForStartup();
void setRegisteredForStartup(bool isRegistered);
2019-10-07 15:46:08 +02:00
} // namespace chatterino
#endif