码迷,mamicode.com
首页 > 其他好文 > 详细

模糊查询窗口

时间:2017-10-31 14:19:31      阅读:92      评论:0      收藏:0      [点我收藏+]

标签:char   sizeof   arch   支持   top   next   log   desktop   text   

FindWindow不支持模糊查找窗口句柄,这里使用GetNextWindow枚举所有窗口查找句柄

HWND SearchWindow(const char *title)
{
	char str[1024];

	HWND hwndChild = GetNextWindow(GetTopWindow(GetDesktopWindow()),GW_HWNDNEXT);
	while(hwndChild)
	{
		ZeroMemory(str,sizeof(str));
		GetWindowText(hwndChild,str,sizeof(str));
		if(strstr(str,title)) return hwndChild;
		hwndChild = GetNextWindow(hwndChild,GW_HWNDNEXT);
	}

	return NULL;
}

  

模糊查询窗口

标签:char   sizeof   arch   支持   top   next   log   desktop   text   

原文地址:http://www.cnblogs.com/hatsusakana/p/7760870.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!