码迷,mamicode.com
首页 > 系统相关 > 详细

QT 强止杀进程

时间:2016-06-10 22:58:28      阅读:398      评论:0      收藏:0      [点我收藏+]

标签:

bool KillProcess(QString ProcessName)

 bool result = false;
 QString str1;

 HANDLE hSnapShot = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS,0) ; 
 PROCESSENTRY32 pInfo; 
 pInfo.dwSize = sizeof(pInfo);

 Process32First(hSnapShot, &pInfo);
 do 
 {
  str1 = (QString::fromUtf16(reinterpret_cast<const unsigned short *>(pInfo.szExeFile)));
  if (str1 == ProcessName) 
  {
   result = true;
   QString cmd;
   cmd = QString("taskkill /F /PID %1 /T").arg(pInfo.th32ProcessID);  

   system(cmd.toAscii());
  } 
 } while(Process32Next(hSnapShot, &pInfo) ); 
 return result;
}

http://blog.csdn.net/itjobtxq/article/details/8450449

QT 强止杀进程

标签:

原文地址:http://www.cnblogs.com/findumars/p/5574301.html

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