int main()
{
HWND hwnd=NULL;
char szTitle[100];
int count=0;
while(hwnd=FindWindowEx(NULL,hwnd,NULL,NULL))
{
GetWindowText(hwnd,szTitle,100);
cout<<(void *)hwnd<<"\t"<<++count<<"\t"<<szTitle<<endl;
}
return 0;
}