Files
panopainter/src/platform_windows/windows_main_window_session.h

14 lines
403 B
C++

#pragma once
#include <windows.h>
namespace pp::platform::windows {
[[nodiscard]] HWND& retained_main_window_handle_ref() noexcept;
[[nodiscard]] wchar_t* retained_main_window_title_buffer() noexcept;
[[nodiscard]] const wchar_t* retained_main_window_title() noexcept;
[[nodiscard]] bool retained_main_window_sandboxed() noexcept;
void set_retained_main_window_sandboxed(bool sandboxed) noexcept;
}