在VC.NET中报错:MeshHelper.obj : error LNK2001: 无法解析的外部符号 __RTC_CheckEsp
TerrainUnit.obj : error LNK2019: 无法解析的外部符号 __RTC_CheckEsp ,该符号在函数 "float __cdecl Height(class INode *,int &)" (?findVolume@@YAMPAVINode@@AAH@Z) 中被引用

解决方案 »

  1.   

    缺少连接库.lib
    用msdn你查一下
      

  2.   

    我知道了,我在VC。NET中编译的,但是因为缺少ctl3d.h 所以就把VC6的包含进来了,最后,,WRONG VERSION OF C runtime lib!!!靠!
      

  3.   

    http://support.microsoft.com/default.aspx?scid=kb;en-us;191669SYMPTOMS
    When building a project with Visual C++ 6.0, you may get the following linker error: 
    error LNK2001: unresolved external symbol __chkesp 
    CAUSE
    The new compiler stack-checking feature requires you to link with the C run- time library. 
    RESOLUTION
    Either link with one of the C run-time libraries or disable the compiler stack checking feature (remove /GZ from the compiler switches).