Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- M E W E L - <b>bool pascal enumchildwindows(hwnd hparent, bool (pascal *func)(),</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
BOOL pascal EnumChildWindows(HWND hParent, BOOL (pascal *func)(),
                              DWORD lParam)

  This function will call the passed function for every descendant of
the window hParent. The handle of the window and lParam will be
passed as the arguments. The function will be called with the
arguments (hWnd, lParam). If any call of 'func' returns FALSE, then
EnumChildWindows() will return immediately without processing the
rest of the windows.

Parameters
  hWnd is the handle of the window whose children we want to enumerate.
  func is a pointer the function which will be called for each window.
  lParam will be passed as the second argument to that function.

Returns
  TRUE if hParent was a valid window handle, FALSE if not.

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