现在的位置: 首页 > 综合 > 正文

遍历window所有窗口句柄

2012年11月30日 ⁄ 综合 ⁄ 共 886字 ⁄ 字号 评论关闭
#include <iostream.h>
#include 
<string.h>

#include 
<windows.h>



BOOL CALLBACK EnumFunc(HWND hwnd,LPARAM lParam);
BOOL CALLBACK EnumChildFunc(HWND hwnd,LPARAM lParam);

int main(int argc, char *argv[])
{
  LPARAM lParam 
= 0;
  EnumWindows(EnumFunc,lParam);
  system(
"PAUSE");    
  
return 0;
}



#include 
<iostream.h>
BOOL CALLBACK EnumFunc(HWND hwnd,LPARAM lParam)
{
         
static int count = 0;
      LPTSTR  pszFileName 
= new char [100];

         GetWindowText(hwnd,pszFileName,
100);
         cout
<<"main hwnd"<<count++<<""<<hwnd<<"  "<<pszFileName<<endl

    EnumChildWindows(hwnd,EnumChildFunc,lParam); 
    system(
"pause");
        
return true;
}


BOOL CALLBACK EnumChildFunc(HWND hwnd,LPARAM lParam)
{
    
static int count = 0;
    LPTSTR pszFileName 
= (LPTSTR) new char [250];

    GetWindowText(hwnd,pszFileName,
250);
    cout
<<" child hwnd "<<hwnd<<count++<<""<<pszFileName<<endl;
    
return true;
}

 

抱歉!评论已关闭.