C++ - Adding memcpy and win32_get_hwnd

This commit is contained in:
Albert 2025-03-07 16:04:21 -05:00
parent ef5df7f28c
commit fd716ddcac

View File

@ -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<void*>(src), count);
}
} // namespace webui
#endif /* _WEBUI_HPP */