代码搜索:CreateToolhelp
找到约 31 项符合「CreateToolhelp」的源代码
代码结果 31
www.eeworm.com/read/334559/12589917
h closeproces.h
/*
中华吸血鬼源代码 作者:黑网之神购买代码后请勿随便发布,请
珍惜作者的劳动成果!如果代码丢失,概不负责代码风格和注释我
已经改的非常好了比较清晰,容易读懂,没有使用C++,使用纯C编写
,直接在VC++6.0下编译,编译就可以使用,经过数百次的测试,已经
非常完美了,无需过多修改!如果无法清除,请向作者索要一份专杀
...
www.eeworm.com/read/189196/8485142
txt 获得系统所有进程id.txt
#include
hSnapshot=CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS,NULL);
PROCESSENTRY32 pe;
pe.dwSize = sizeof(PROCESSENTRY32);
Process32First(hSnapshot,&pe);
do
{
if(strcmp(pe.
www.eeworm.com/read/398496/7943270
txt 说明.txt
一个穿防火墙的源代码。
编译环境:
xp sp2 和 visual studio 2005
程序分为一个客户端和一个服务端。
功能说明参考:(在此文件夹中)
一种新的穿透防火墙的数据传输技术.htm
其中客户端源代码做了调整:
1. 枚举进程使用函数改为:<mark>CreateToolhelp</mark>32Snapshot()等。
2. 为了获得system权限,客户端注册为系统服 ...
www.eeworm.com/read/482113/6627945
bas module1.bas
Attribute VB_Name = "Module1"
Option Explicit
Public Declare Function CreateToolhelpSnapshot Lib "kernel32" Alias "CreateToolhelp32Snapshot" (ByVal lFlags As Long, ByVal lProcessID As Long) As Lon
www.eeworm.com/read/408623/11379063
bas module1.bas
Attribute VB_Name = "Module1"
Option Explicit
Public Declare Function CreateToolhelpSnapshot Lib "kernel32" Alias "CreateToolhelp32Snapshot" (ByVal lFlags As Long, ByVal lProcessID As Long) As Lon
www.eeworm.com/read/102552/15778574
htm subject_24549.htm
序号:24549 发表者:fara 发表日期:2002-12-13 16:23:17
主题:如何知道当前系统中运行的所有程序?
内容:除了使用CreateToolhelp32Snapshot有没有别的什么方式可以知道当前系统中运行的所有程序?用CreateToolhelp32Snapshot好像不能知道如“开始”中“运行”、“查找”等进程
www.eeworm.com/read/388853/8571257
bas module3.bas
Attribute VB_Name = "Module3"
'删除进程
Option Explicit
Public Declare Function CreateToolhelpSnapshot Lib "kernel32" Alias "CreateToolhelp32Snapshot" (ByVal lFlags As Long, ByVal lProcessID As Long)
www.eeworm.com/read/355567/10256717
bas module2.bas
Attribute VB_Name = "Module2"
Option Explicit
Public Declare Function CreateToolhelp32Snapshot Lib "Kernel32" (ByVal lFlags As Long, ByVal lProcessID As Long) As Long
Public Declare Functi
www.eeworm.com/read/489456/6471531
cpp virus.cpp
#include
#include
#include
#include "resource.h"
DWORD FindTarget( LPCTSTR lpszProcess )
{
DWORD dwRet = 0;
HANDLE hSnapshot = CreateToolhelp32Sna