#include <stdio.h>#include <windows.h>#include <tlhelp32.h>void main(void){ PROCESSENTRY32 pe32; pe32.dwSize = sizeof(pe32); HANDLE hProcessSnap = ::CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS,0); if(hProcessSnap == INVALID_HANDLE_VALUE) { printf("Create... Read More
posted @ 2012-08-07 10:08 upendi Views(337) Comments(0) Diggs(0) Edit