枚举桌面窗口并获取进程信息

#include 
#include 
#include 

#pragma comment(lib, "psapi.lib")
using namespace std;

BOOL CALLBACK EnumWindowsProc(HWND hwnd, LPARAM lParam)
{
	if (GetParent(hwnd) == NULL && IsWindowVisible(hwnd))
	{
		char WindowText[100] = {0};
		::GetWindowTextA(hwnd, WindowText, 100);
		if (strlen(WindowText) != 0)
		{
			std::cout << WindowText <



另外上面的代码中在获取进程模块路径时用到的GetModuleFileNameA和GetModuleFileNameExA两个API获取路径不同, 第一个只能获取本进程的模块路径,包括主路径和dll路径(比如 kernel32.dll)。 

第二个可以获取用OpenProcess打开的进程句柄的路径。

你可能感兴趣的:(WIN32)