MiniGUI/examples/nextcontrol.c
2017-05-29 12:20:05 +08:00

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);