0

所以我正在查看一些源代码,这件事让我很困惑。我是 C++ 的新手,所以我很难理解这是为了什么。我真的不知道下面的 typedef 是做什么用的,以及它是如何在下面的代码中使用的。

typedef void (__fastcall *TSecType_long___SetData_t)(DWORD dwAddress, DWORD dwEDX, DWORD dwValue);

这些是用于使用此 typedef 的方法的一些值。

const TSecType_long___SetData_t TSecType_long___SetData = reinterpret_cast<TSecType_long___SetData_t>(0x00518430); // 56 8B ? 8B ? ? ? ? ? 41 [3rd Result]

const DWORD *const pdwUserLocal = reinterpret_cast<const DWORD *const>(0x016A1234); // 8B ? ? ? ? ? 85 C9 74 ? 83 B8 ? ? ? ? 00 74 ? 8B ? ? ? ? ? 85 C0 7E ? 8B
const DWORD dwTeleportToggleOffset = 0x00008A94; // 8D ? ? ? ? ? 8B ? 8B ? E8 ? ? ? ? 85 ? 0F 85 ? ? ? ? 39 ? ? ? ? ?
const DWORD dwTeleportYOffset = 0x00008AAC; // 8D ? ? ? ? ? ? 8B ? E8 ? ? ? ? 6A ? 8B ? E8 ? ? ? ? 6A 00 68 ? ? ? ?
const DWORD dwTeleportXOffset = dwTeleportYOffset + 0x0C;

对于方法本身:

bool Teleport(_In_ int nX, _In_ int nY)
{
__try
{
    {

        DWORD dwUserLocal = *pdwUserLocal;
        TSecType_long___SetData(dwUserLocal + dwTeleportToggleOffset, NULL, 0);
        TSecType_long___SetData(dwUserLocal + dwTeleportXOffset, NULL, nX);
        TSecType_long___SetData(dwUserLocal + dwTeleportYOffset, NULL, nY);
        TSecType_long___SetData(dwUserLocal + dwTeleportToggleOffset, NULL, 1);
    }
}
__except (EXCEPTION_EXECUTE_HANDLER)
{
    return false;
}
return true;
}
4

2 回答 2

1

在您知道 atypedef是什么的假设下工作(它采用数据类型并给它另一个名称),这就是一个函数 typedef。换句话说,TSecType_long___SetData_t是一个接受 3 个DWORD参数并返回 a的函数void

在您的情况下,有人先验地知道地址 0x00518430 包含一个可以在给定TSecType_long___SetData_tAPI 的情况下调用的函数。为了使该地址可调用,该地址被重新解释为函数数据类型并分配给变量TSecType_long___SetData

于 2013-07-08T04:39:30.890 回答
0

就像@chris 所说TSecType_long___SetData_t的只是一个指向函数的指针的声明,因此具有参数。以及以下行:

const TSecType_long___SetData_t TSecType_long___SetData = einterpret_cast<TSecType_long___SetData_t>(0x00518430);

定义该类型的变量并为其分配一个值,在这种情况下,它似乎是一个硬编码的内存位置(我不知道它来自哪里)。所有其他事件都只是简单的函数调用。
对函数指针进行一点谷歌搜索应该可以为您提供有关它们的任何信息。

于 2013-07-08T04:40:08.690 回答