LPARAM lParam = 0; //param to use
EnumWindows( EnumWindowsProc, lParam); //usage
BOOL CALLBACK EnumWindowsProc( HWND hWnd, LPARAM lParam )
{
//This function will be called on each Window!
// return FALSE to stop enumeration
EnumChildWindows(hWnd, EnumWindowsProc, lParam); //You can enumerate child windows too
return TRUE; //continue enumeration
}
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.