Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Win 2 API - <b>enumchildwindows</b> enumerate child windows belonging to parent http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
EnumChildWindows     Enumerate Child Windows Belonging to Parent

BOOL EnumChildWindows(hWndParent, lpEnumFunc, lParam)
HWND hWndParent;
FARPROC lpEnumFunc; /* As returned by MakeProcInstance() */
LONG lParam; /* Value passed to callback function */

Returns:    Non-zero if all child windows were enumerated.

Note:       Call back function has following definition:

        BOOL _export FAR PASCAL EnumFunc(hWnd, lParam)
        HWND hWnd; /* Child windows handle */
        LONG lParam; /* lParam from EnumChildWindows */

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson