摘要: #include<iostream>#include <Windows.h>#include <TlHelp32.h>using namespace std;typedef struct Node//定义一个结构体 {DWORD Add;struct Node* pNext;}node;node* pHead = NULL,*pEnd = NULL;HANDLE hMyAllProce;DWORD m_page = 4*1024;//每页4kbvoid ShowAllProcess();//显示所有进程BOOL OpenMyProcess();//打开自己需 阅读全文
posted @ 2011-12-09 10:50 Mayflower4you 阅读(1301) 评论(0) 推荐(0)