-
大小: 13.53MB文件类型: .rar金币: 2下载: 1 次发布日期: 2023-06-18
- 语言: 其他
- 标签: CheatEngine CE 读内存 基址查找
资源简介
CE6.8.1汉化绿色版,可以对程序或游戏的内存进行搜索改写和查找内存基址等
代码片段和文件信息
#include “StdAfx.h“
#include “Pipe.h“
//superclass to make pipe handling easier to work with
Pipe::Pipe(void)
{
pipehandle=0;
InitializeCriticalSection(&cs);
}
Pipe::~Pipe(void)
{
//check if someone forgot to clean it up
if ((pipehandle!=0) && (pipehandle!=INVALID_HANDLE_VALUE))
{
CloseHandle(pipehandle);
pipehandle=0;
}
}
void Pipe::Lock(void)
{
EnterCriticalSection(&cs);
}
void Pipe::Unlock(void)
{
LeaveCriticalSection(&cs);
}
void Pipe::Read(PVOID buf int count)
{
DWORD br;
if (count==0) return;
if (ReadFile(pipehandle buf count &br NULL)==FALSE)
throw(“Read Error“);
}
void Pipe::Write(PVOID buf int count)
{
DWORD bw;
if (count==0) return;
if (WriteFile(pipehandle buf count &bw NULL)==FALSE)
throw(“Write Error“);
}
BYTE Pipe::ReadByte()
{
BYTE b;
Read(&b 1);
return b;
}
WORD Pipe::ReadWord()
{
WORD w;
Read(&w 2);
return w;
}
DWORD Pipe::ReadDword()
{
DWORD dw;
Read(&dw 4);
return dw;
}
UINT64 Pipe::ReadQword()
{
UINT64 q;
Read(&q 8);
return q;
}
void Pipe::WriteByte(BYTE b)
{
Write(&b 1);
}
void Pipe::WriteWord(WORD w)
{
Write(&w 2);
}
void Pipe::WriteDword(DWORD dw)
{
Write(&dw 4);
}
void Pipe::WriteQword(UINT64 q)
{
Write(&q 8);
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 325064 2017-04-20 12:24 Cheat Engine 6.8.1\allochook-i386.dll
文件 468000 2017-04-20 12:24 Cheat Engine 6.8.1\allochook-x86_64.dll
文件 50456 2016-07-13 11:23 Cheat Engine 6.8.1\autorun\dlls\32\CEJVMTI.dll
文件 62232 2016-07-13 11:23 Cheat Engine 6.8.1\autorun\dlls\64\CEJVMTI.dll
文件 238688 2018-06-21 13:17 Cheat Engine 6.8.1\autorun\dlls\MonoDataCollector32.dll
文件 290400 2018-06-21 13:17 Cheat Engine 6.8.1\autorun\dlls\MonoDataCollector64.dll
文件 1322 2015-04-18 16:18 Cheat Engine 6.8.1\autorun\dlls\src\Common\Pipe.cpp
文件 441 2015-04-18 16:18 Cheat Engine 6.8.1\autorun\dlls\src\Common\Pipe.h
文件 4789 2015-04-18 16:18 Cheat Engine 6.8.1\autorun\dlls\src\Java\CEJVMTI\CEJVMTI\CEJVMTI.cpp
文件 836 2015-04-18 16:18 Cheat Engine 6.8.1\autorun\dlls\src\Java\CEJVMTI\CEJVMTI\CEJVMTI.h
文件 10039 2015-04-18 16:18 Cheat Engine 6.8.1\autorun\dlls\src\Java\CEJVMTI\CEJVMTI\CEJVMTI.vcproj
文件 410 2015-04-18 16:18 Cheat Engine 6.8.1\autorun\dlls\src\Java\CEJVMTI\CEJVMTI\dllmain.cpp
文件 9131 2015-04-18 16:18 Cheat Engine 6.8.1\autorun\dlls\src\Java\CEJVMTI\CEJVMTI\JavaEventServer.cpp
文件 1440 2015-04-18 16:18 Cheat Engine 6.8.1\autorun\dlls\src\Java\CEJVMTI\CEJVMTI\JavaEventServer.h
文件 42621 2015-04-18 16:18 Cheat Engine 6.8.1\autorun\dlls\src\Java\CEJVMTI\CEJVMTI\JavaServer.cpp
文件 2957 2015-04-18 16:18 Cheat Engine 6.8.1\autorun\dlls\src\Java\CEJVMTI\CEJVMTI\JavaServer.h
文件 294 2015-04-18 16:18 Cheat Engine 6.8.1\autorun\dlls\src\Java\CEJVMTI\CEJVMTI\stdafx.cpp
文件 542 2015-04-18 16:18 Cheat Engine 6.8.1\autorun\dlls\src\Java\CEJVMTI\CEJVMTI\stdafx.h
文件 1428 2015-04-18 16:18 Cheat Engine 6.8.1\autorun\dlls\src\Java\CEJVMTI\CEJVMTI\targetver.h
文件 1241 2016-08-13 02:19 Cheat Engine 6.8.1\autorun\dlls\src\Java\CEJVMTI\CEJVMTI.sln
文件 642 2015-04-18 16:18 Cheat Engine 6.8.1\autorun\dlls\src\Mono\MonoDataCollector\dllmain.cpp
文件 4602 2015-04-18 16:18 Cheat Engine 6.8.1\autorun\dlls\src\Mono\MonoDataCollector\me
文件 2964 2015-04-18 16:18 Cheat Engine 6.8.1\autorun\dlls\src\Mono\MonoDataCollector\MonoDataCollector.cpp
文件 227 2015-04-18 16:18 Cheat Engine 6.8.1\autorun\dlls\src\Mono\MonoDataCollector\MonoDataCollector.h
文件 5600 2015-04-18 16:18 Cheat Engine 6.8.1\autorun\dlls\src\Mono\MonoDataCollector\MonoDataCollector.vcproj
文件 34817 2018-06-21 13:15 Cheat Engine 6.8.1\autorun\dlls\src\Mono\MonoDataCollector\PipeServer.cpp
文件 12708 2018-05-02 12:42 Cheat Engine 6.8.1\autorun\dlls\src\Mono\MonoDataCollector\PipeServer.h
文件 304 2015-04-18 16:18 Cheat Engine 6.8.1\autorun\dlls\src\Mono\MonoDataCollector\stdafx.cpp
文件 1428 2015-04-18 16:18 Cheat Engine 6.8.1\autorun\dlls\src\Mono\MonoDataCollector\targetver.h
文件 1351 2015-04-18 16:18 Cheat Engine 6.8.1\autorun\dlls\src\Mono\MonoDataCollector.sln
............此处省略132个文件信息
- 上一篇:tp5漂亮后台界面
- 下一篇:citespace中文指南
相关资源
- 使用ATLAS探测器在s = 13 $$ \\ sqrt {s} =
- 在ATLAS探测器上搜索衰变到增强夸克对
- 搜索在s = 13 TeV pp碰撞中在pp碰撞中产
- 使用ATLAS检测器在s = 13 $$ \\ sqrt {s} =
- 使用ATLAS检测器,在s = 7 TeV的pp碰撞中
- W s Z玻色子对生产横截面在pp碰撞中的
- 使用ATLAS探测器在s = 13 TeV的pp碰撞中用
- 使用ATLAS探测器在s = 8 $$ \\ sqrt {s} =
- 在与ATLAS探测器发生s = 8 TeV pp碰撞的
- 使用ATLAS探测器在s = 7TeV的pp碰撞中区
- 使用ATLAS探测器在13 TeV pp碰撞中搜索轨
- 使用ATLAS探测器在s = 8 TeV的质子-质子
- 使用ATLAS探测器在s = 13 $$ \\ sqrt {s} =
- 使用ATLAS探测器在s = 13 TeV的pp碰撞中搜
- 类似QCD的新领域中的Theta
- 在CERN LHC的pPb碰撞中探索矢量介子光生
- 强子对撞机中光子与强子相互作用中
- 膨胀玻璃通量管中的非平衡轴向电荷
- 从胶子场散射的夸克喷流:从饱和到
- 带有彩色玻璃冷凝液的偶极Wilson线性
- 玻色增强,Liouville有效作用以及p-A碰
- 彩色玻璃冷凝液在小系统碰撞中方位
- 高能分解中的旋转螺旋方法:彩色玻
- CGC因式分解用于质子-核碰撞中正向产
- 大型强子对撞机质子-铅碰撞中的饱和
- 彩色玻璃冷凝物密度矩阵:Lindblad演化
- 相对论重离子对撞机小型系统扫描的
- 彩色玻璃冷凝液的衍射dijet产量和Wi
- Kharzeev-Levin-Nardi模型中的热辐射和包容
- 重子停留在彩色玻璃冷凝物中的时空
评论
共有 条评论