错误:从'int(*)()'到'long unsigned int'的无效转换

时间:2012-06-13 18:16:38

标签: c++ winapi

我对C ++很陌生,我正试图在这个论坛http://www.blizzhackers.cc/viewtopic.php?p=2483118上理解代码。我已经设法解决了大部分错误,但是这个让我感到困惑的是函数中的代码给我带来了问题。

void LoadDll(char *procName, char *dllName)
{
    HMODULE hDll;
    unsigned long cbtProcAddr;

    hDll = LoadLibrary(dllName);
    cbtProcAddr = GetProcAddress(hDll, "CBTProc"); // The error points to this line

    SetWindowsHookEx(WH_CBT, cbtProcAddr, hDll, GetTargetThreadIdFromProcname(procName));
}

2 个答案:

答案 0 :(得分:1)

cbtProcAddr的定义更改为:

HOOKPROC cbtProcAddr;

编译器因为试图将指针类型值存储在声明为保存整数的变量中而感到沮丧。 (您可能需要将GetProcAddress()的结果转换为HOOKPROC,因为该函数不知道指向函数的实际签名,而是{{1}中指针的使用} call意味着它与SetWindowsHookEx()函数指针类型的签名兼容。)

答案 1 :(得分:1)

GetProcAddress返回FARPROC(查看编译器错误,它只是int(*)()的typedef)。 unsigned long不是FARPROC,两者之间没有隐式转换。

我无法理解为什么要将GetProcAddress的结果存储在unsigned long中。如果检索要存储函数指针的函数。使用正确的类型(SetWindowsHookEx需要HOOKPROC)并投射:

HOOKPROC cbtProcAddr;

hDll = LoadLibrary(dllName);
cbtProcAddr = reinterpret_cast<HOOKPROC>(GetProcAddress(hDll, "CBTProc"));