码迷,mamicode.com
首页 > 其他好文 > 详细

获取系统快照

时间:2014-11-06 12:29:54      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   ar   for   sp   div   on   log   

 1 HANDLE hProcessSnap;
 2     PROCESSENTRY32 pe32;
 3     BOOL bProcess;
 4     int p =0;
 5     i = 0;
 6         for (p=0;p<130;p++) { 
 7             Count[p]=(char*)malloc(sizeof(char)*130*32);
 8         }
 9     
10         hProcessSnap = CreateToolhelp32Snapshot( TH32CS_SNAPPROCESS, 0 );        //创建进程快照
11     
12             if( hProcessSnap == INVALID_HANDLE_VALUE )
13             {    
14                 OutputDebugString(L"[fProcessMonitor]: INVALID_HANDLE_VALUE");
15                 return FALSE;    //创建快照失败 不能列举进程 返回
16             }
17     
18     pe32.dwSize = sizeof( pe32 );
19     bProcess = Process32First( hProcessSnap, &pe32 );
20     do            //遍历进程列表查找
21      {
22 
23       strcpy(Count[i],pe32.szExeFile);
24       OutputDebugString(Count[i]);
25       i++;
26      // MessageBoxA(NULL,"111","0000000",MB_OK);
27      }while( Process32Next( hProcessSnap, &pe32 ) );

 

获取系统快照

标签:style   blog   color   ar   for   sp   div   on   log   

原文地址:http://www.cnblogs.com/kingbin/p/4078326.html

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