功能指针多重定义

时间:2013-06-04 03:02:08

标签: c++

我有以下代码:

Header.hpp:

#ifndef HEADER_HPP_INCLUDED
#define HEADER_HPP_INCLUDED
#include<Windows.h>

extern HMODULE Module;
extern "C" bool __stdcall Initialized(void);
void (__stdcall *ptr_DetourPoint) (int X, int Y);

#endif //HEADER_HPP_INCLUDED

Header.cpp:

#include "Header.hpp"
HMODULE Module = nullptr;

bool __stdcall Initialize(void)
{
    Module = LoadLibrary("Point.dll");
    ptr_DetourPoint = reinterpret_cast<(__stdcall *)(int, int)>(GetProcAddress(Module, "PointFunc"));
    return ptr_DetourPoint != nullptr;
}

extern "C" __stdcall HookDetourPoint(int X, int Y)
{
    //Do stuff here..
    ptr_DetourPoint(X, Y);
}

main.cpp中:

#include <windows.h>
#include "Header.hpp"

extern "C" bool __stdcall DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
{
    switch (fdwReason)
    {
        case DLL_PROCESS_ATTACH:
            Initialized();
            DisableThreadLibraryCalls(hinstDLL);
            break;

        case DLL_PROCESS_DETACH:
            break;

        default:
            break;
    }
    return true;
}

在上面,当我使用Mingw 4.8编译它时,我得到:

obj\Release\main.o:main.cpp:(.bss+0xb78): multiple definition of `ptr_DetourPoint'
obj\Release\Implementations\Header.o:Header.cpp:(.bss+0xb80): first defined here

我为什么会这样想?我不想要输入我的函数指针。

2 个答案:

答案 0 :(得分:3)

简短的回答是ptr_DetourPoint声明了一个全局函数指针,另一个数据像Module。要修复它,您也可以将其标记为“extern”。但我怀疑你需要在标题中公开它,因为它似乎只是header.cpp中的实现细节。

答案 1 :(得分:3)

变量在标头中定义,这意味着包含它的任何源文件都定义该符号。结果是将main.cpp和Header.cpp链接在一起定义ptr_DetourPoint两次。您只需要在一个源文件中定义它,如果其他文件需要查看它,则在头文件中将其声明为extern。