GetNextWindow
The GetNextWindow
function retrieves the handle of the next or previous window in the Z order
HWND GetNextWindow(
HWND hWnd, |
// handle of
current window |
UINT wCmd |
// direction flag |
); |
|
Parameters
hWnd
Identifies a
window. The window handle retrieved is relative to this window, based on the
value of the wCmd parameter.
wCmd
Specifies
whether the function returns the handle of the next window or of the previous
window. This parameter can be either of the following values:
Value |
Meaning |
GW_HWNDNEXT |
Returns the
handle of the window below the given window. |
GW_HWNDPREV |
Returns the
handle of the window above the given window. |
Return Values
If the
function succeeds, the return value is the handle of the next (or previous)
window. If there is no next (or previous) window, the return value is NULL. To
get extended error information, call GetLastError
Remarks
Using this
function is the same as calling the GetWindow function with the
GW_HWNDNEXT or GW_HWNDPREV flag set.
See Also