2017-07-27 152 views
-2

每次我嘗試編譯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 
    { 
+0

編譯器只是說「Error0020 Error3861」?在人類語言中沒有實際的錯誤信息? –

回答

0

錯誤C3861引用編譯器無法找到的函數。由於您正在嘗試編譯現有項目,是否包含有關如何設置Visual Studio鏈接設置的任何文檔?

似乎應該包含的庫或頭文件都丟失了。由編譯器在其標準輸出中包含的錯誤信息應該會提供更多信息,例如,其中函數實際上是導致該問題的原因。

相關問題