每当我尝试编译a .sln
时,我总是会在此特定error
文件中获得此CPP
。
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
{
答案 0 :(得分:0)
错误C3861引用编译器无法找到的函数。由于您尝试编译现有项目,是否包含有关如何设置Visual Studio链接设置的任何文档?
似乎缺少应该包含的库或头文件。编译器在其标准输出中包含的错误信息应该为您提供更多信息,例如 函数实际导致问题。