From fd716ddcac980eee9f8f0c6fb6a94a240343fad0 Mon Sep 17 00:00:00 2001 From: Albert Date: Fri, 7 Mar 2025 16:04:21 -0500 Subject: [PATCH] C++ - Adding memcpy and win32_get_hwnd --- include/webui.hpp | 11 +++++++++++ 1 file changed, 11 insertions(+) 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 */