Visual c++ 我将如何轻松地修复此错误?

Visual c++ 我将如何轻松地修复此错误?,visual-c++,Visual C++,每次我试图编译a.sln时,我总是在这个特定的CPP文件中得到这个error Error0020 Error3861 有什么帮助吗 // If we are in the right place where the player view is calculated // Calculate the change in the view and get rid of it if (Menu::Window.VisualsTab.OtherNoVisualRecoil.GetState() &a

每次我试图编译
a.sln
时,我总是在这个特定的
CPP
文件中得到这个
error

Error0020
Error3861
有什么帮助吗

// If we are in the right place where the player view is calculated
// Calculate the change in the view and get rid of it
if (Menu::Window.VisualsTab.OtherNoVisualRecoil.GetState() && (DWORD)(_ReturnAddress()) == Offsets::Functions::dwCalcPlayerView)
{
    IClientEntity* pLocalEntity = NULL;

    float* m_LocalViewAngles = NULL;

    __asm
    {
错误引用了编译器无法定位的函数。由于您正在尝试编译一个现有项目,该项目是否包含有关如何设置Visual Studio链接设置的文档

似乎应该包含的库或头文件丢失了。编译器在其标准输出中包含的错误信息应该为您提供更多信息,例如哪个函数实际导致了问题

编译器只是说“error0020error3861”?在人类语言中没有实际的错误消息?