mirror of
https://github.com/VincentWei/MiniGUI.git
synced 2025-05-10 08:40:41 +08:00
13 lines
191 B
C
13 lines
191 B
C
|
|
/*
|
|
* Sample code for GetNextChild:
|
|
* Travles all child of a window \a hWnd.
|
|
*/
|
|
|
|
HWND child = HWND_DESKTOP;
|
|
|
|
do {
|
|
child = GetNextChild (hWnd, child);
|
|
} while (child != HWND_DESKTOP);
|
|
|