mirror-chatterino2/src/util/WindowsHelper.hpp

19 lines
303 B
C++
Raw Normal View History

#pragma once
#ifdef USEWINSDK
# include <boost/optional.hpp>
# include <Windows.h>
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