diff --git a/include/webui.hpp b/include/webui.hpp index abe0bcdd..6eb54fb6 100644 --- a/include/webui.hpp +++ b/include/webui.hpp @@ -393,6 +393,12 @@ namespace webui { void set_context(const std::string_view element, void* context) const { webui_set_context(webui_window, element.data(), context); } + + // Gets Win32 window `HWND`. More reliable with WebView than web browser + // window, as browser PIDs may change on launch. + void* win32_get_hwnd() const { + return webui_win32_get_hwnd(webui_window); + } }; // ------ Namespace members `webui::xxx()` ------ @@ -494,6 +500,11 @@ namespace webui { return webui_interface_is_app_running(); } + // Copy raw data. + inline void memcpy(void* dest, const void* src, size_t count) { + webui_memcpy(dest, const_cast(src), count); + } + } // namespace webui #endif /* _WEBUI_HPP */