pub fn enum_child_windows<F: FnMut(HWND) -> ControlFlow<()>>(
parent: Option<HWND>,
f: F,
)
Expand description
Get handles to all open windows or to child windows of a specific window.
ยงReferences
- Rust library for getting titles of all open windows: https://github.com/HiruNya/window_titles/blob/924feffac93c9ac7238d6fa5c39c1453815a0408/src/winapi.rs
- Getting a list of all open windows in c++ and storing them - Stack Overflow
- java - Windows: how to get a list of all visible windows? - Stack Overflow
- EnumChildWindows function (winuser.h) - Win32 apps | Microsoft Learn