使用Windows任务管理器确定应用程序quot的方法
最近参加的一个项目要求实现远程任务管理功能,也就是"RemoteTaskManager"(RTM)。我把它与WindowsNT的任务管理器进行了比较,发现标准的任务管理器显示应用程序的状态(正在运行或者没有响应)。标准的任务管理器发送(通过SendMessageTimeout函数)一个消息到主应用窗口,如果函数调用失败或者超时--则应用程序的状态就是"没有响应",否则状态为"正在运行"。但我发现还有一个更好的解决方法。本文将通过实例程序进行示范。这个方法的思路是通过调用User32.dll中一个未公开的函数来实现的。这个函数存在于Windows9x和WindowsNT/2000系统中,但在两个系统中的名字是不同的。Windows9x系统中的名字为:IsHungThread,在WindowsNT/2000系统中的名字为IsHungAppWindow。下面是它们的原型:
BOOLIsHungAppWindow(
HWNDhWnd,//主应用窗口句柄
);
和
BOOLIsHungThread(
DWORDdwThreadId,//主应用窗口的线程ID
);
不幸的是,微软在User32.lib中没有提供这两个函数的输出。也就是说,这两个函数是未公开函数,如果要在程序中使用它们,则必须通过GetProcAddress和GetModuleHandle函数动态加载:
typedefBOOL(WINAPI*PROCISHUNGAPPWINDOW)(HWND);
typedefBOOL(WINAPI*PROCISHUNGTHREAD)(DWORD);
PROCISHUNGAPPWINDOWIsHungAppWindow;
PROCISHUNGTHREADIsHungThread;
HMODULEhUser32=GetModuleHandle("user32");
IsHungAppWindow=(PROCISHUNGAPPWINDOW)
GetProcAddress(hUser32,"IsHungAppWindow");
IsHungThread=(PROCISHUNGTHREAD)
GetProcAddress(hUser32,"IsHungThread");
//////////////////
//ishung.cpp(Windows95/98/NT/2000)
//
//Thisexamplewillshowyouhowyoucanobtainthecurrentstatus
//oftheapplication.
//
//
//(c)1999AshotOganesyanK,SmartLine,Inc
//mailto:ashot@aha.ru,http://www.protect-me.com,http://www.codepile.com
#include<windows.h>
#include<stdio.h>
//User32!IsHungAppWindow(NTspecific!)
//
//Thefunctionretrievesthestatus(runningornotresponding)ofthe
//specifiedapplication
//
//BOOLIsHungAppWindow(
//HWNDhWnd,//handletomainapp'swindow
//);
typedefBOOL(WINAPI*PROCISHUNGAPPWINDOW)(HWND);
//User32!IsHungThread(95/98specific!)
//
//Thefunctionretrievesthestatus(runningornotresponding)ofthe
//specifiedthread
//
//BOOLIsHungThread(
//DWORDdwThreadId,//Theidentifierofthemainapp'swindowthread
//);
typedefBOOL(WINAPI*PROCISHUNGTHREAD)(DWORD);
PROCISHUNGAPPWINDOWIsHungAppWindow;
PROCISHUNGTHREADIsHungThread;
voidmain(intargc,char*argv[])
{
/*if(argc<2)
{
printf("Usage:/n/nishung.exehWnd/n");
return;
}
*/
//HWNDhWnd;
//sscanf(argv[1],"%lx",&hWnd);
HWNDhWnd=::FindWindow(NULL,"CLENT");
if(hWnd==NULL)
{
printf("Incorrectwindowhandle(handleisNULL)/n");
return;
}
if(!IsWindow(hWnd))
{
printf("Incorrectwindowhandle/n");
return;
}
HMODULEhUser32=GetModuleHandle("user32");
if(!hUser32)
return;
IsHungAppWindow=(PROCISHUNGAPPWINDOW)
GetProcAddress(hUser32,
"IsHungAppWindow");
IsHungThread=(PROCISHUNGTHREAD)GetProcAddress(hUser32,
"IsHungThread");
if(!IsHungAppWindow&&!IsHungThread)
return;
OSVERSIONINFOosver;
osver.dwOSVersionInfoSize=sizeof(OSVERSIONINFO);
if(!GetVersionEx(&osver))
return;
BOOLIsHung;
if(osver.dwPlatformId&VER_PLATFORM_WIN32_NT)
IsHung=IsHungAppWindow(hWnd);
else
IsHung=IsHungThread(GetWindowThreadProcessId(hWnd,NULL));
if(IsHung)
printf("NotResponding/n");
else
printf("Running/n");
}
本文地址:http://www.45fan.com/dnjc/69146.html