mirror-chatterino2/src/util/WindowsHelper.hpp
2019-10-07 15:46:41 +02:00

19 lines
303 B
C++

#pragma once
#ifdef USEWINSDK
# include <Windows.h>
# include <boost/optional.hpp>
namespace chatterino {
boost::optional<UINT> getWindowDpi(HWND hwnd);
void flushClipboard();
bool isRegisteredForStartup();
void setRegisteredForStartup(bool isRegistered);
} // namespace chatterino
#endif