如何在反编译的dll上找到Arg的类型

时间:2019-10-10 14:08:44

标签: c++ dll arguments void-pointers decompiling

我已经反编译了一个DLL,以找到条目函数之一的所有参数,看起来像这样:

void** FunctionImLookingFor(void** ecx, void** a2, void** a3, void** a4, void** a5, void** a6, void** a7) {
    void* ebp8;
    void** eax9;
    void** v10;
    int1_t zf11;
    void** eax12;
    void** v13;
    int1_t zf14;
    void** edx15;
    int1_t zf16;
    void** v17;
    void** eax18;
    void** ecx19;
    void** v20;
...
}

所有参数均为空**,这没有任何意义。正常吗?我怎么知道这是什么类型的参数?反编译期间我做错什么了吗?

预先感谢

0 个答案:

没有答案