首页 > 代码库 > 初接触劫持,请教下各位

初接触劫持,请教下各位

void hook()
{
    DetourRestoreAfterWith();
    DetourTransactionBegin();
    DetourUpdateThread(GetCurrentThread());

    DetourAttach((void **)&oldsystem,newsystem);
    DetourTransactionCommit();
}

void unhook()
{
    DetourTransactionBegin();
    DetourUpdateThread(GetCurrentThread());
    DetourDetach((void **)&oldsystem,newsystem);
    DetourTransactionCommit();
}

想请教下各位这两段代码,为什么Detour开头的函数都说没有定义,我已经编译好了detour3.0,而且将detour.h跟detours.lib都复制到了相应目录

初接触劫持,请教下各位