通過進程名獲取pid時進程被迫結束
這是片段代碼
char id[15]="chrome.exe"; //定義存儲進程名的變量
PROCESSENTRY32 pe32;
HANDLE hNoteHandle; //定義進程快照變量
//在使用這個結構前,先設置它的大小
pe32.dwSize = sizeof(pe32);
//給系統內所有的進程拍個快照
HANDLE hProcessSnap = ::CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS,0);
if (hProcessSnap == INVALID_HANDLE_VALUE)
{
printf("CreateToolhelp32Snapshot 調用失敗.\n");
return -1;
}
//遍歷進程快照,輪流顯示每個進程的信息
BOOL bMore = ::Process32First(hProcessSnap,&pe32);
while (bMore)
{
int strcmp(const char *string, const char *string2);
if(strcmp(id,pe32.szExeFile)==0)
{
dwProcessid=pe32.th32ProcessID; //將進程id存入xy
hNoteHandle=OpenProcess(PROCESS_ALL_ACCESS,FALSE,pe32.th32ProcessID);
TerminateProcess(hNoteHandle,1);
}
bMore = ::Process32Next(hProcessSnap,&pe32);
}
EnumWindows((WNDENUMPROC)EnumWindowsProc,0);
問題已解決,打擾了,謝謝