mirror of
https://github.com/webui-dev/webui
synced 2025-03-28 21:13:17 +00:00
C++ - Adding memcpy and win32_get_hwnd
This commit is contained in:
parent
ef5df7f28c
commit
fd716ddcac
@ -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 */
|
||||
|
Loading…
x
Reference in New Issue
Block a user