window调用api列出当前所有进程示例

内容摘要
复制代码 代码如下:#include <stdio.h>#include <stdlib.h>#include <windows.h>#include <tlhelp32.h>
void PrintProcessList();
int main(){ PrintProcessList();
syste
文章正文

复制代码 代码如下:

#include <stdio.h>
#include <stdlib.h>
#include <windows.h>
#include <tlhelp32.h>

void PrintProcessList();

int main(){
 PrintProcessList();

 system("pause");
 return 0;
}

void PrintProcessList(){
 HANDLE pHandle;
 PROCESSENTRY32 proc;
 DWORD procId;
 pHandle = CreateToolhelp32Snapshot(0x2,0x0);
 if(pHandle==INVALID_HANDLE_VALUE){
  return;
 }
 proc.dwSize = sizeof(PROCESSENTRY32);
 while(Process32Next(pHandle,&proc)){
  printf("ProcessName : %s - ProcessID : %d\r\n",proc.szExeFile,proc.th32ProcessID);
 }
 CloseHandle(pHandle);
 return;
}


代码注释

作者:喵哥笔记

IDC笔记

学的不仅是技术,更是梦想!