visual studio10错误LNK2019:函数_wmain中引用的未解析的外部符号@ _RTC_CheckStackVars @ 8

时间:2011-07-10 17:16:17

标签: visual-c++

代码:

// displayvideo.cpp : Defines the entry point for the console application.

#include "stdafx.h"

#include"stdio.h"
#include "highgui.h"


int _tmain(int argc, _TCHAR* argv[])
{
    cvNamedWindow:( "Example2", CV_WINDOW_AUTOSIZE );
    CvCapture* capture = cvCreateFileCapture( "tendulkar.avi" );
    IplImage* frame;
    while(1) {
        frame = cvQueryFrame( capture );
        if( !frame ) break;
        cvShowImage( "Example2", frame );
        char c = cvWaitKey(33);
        if( c == 27 ) break;
    }
    cvReleaseCapture( &capture );
    cvDestroyWindow( "Example2" );
    return 0;
}

1 个答案:

答案 0 :(得分:0)

使用/RTCs for runtime stack checking进行编译时,此功能是必需的。您可以在项目的C / C ++编译器选项中关闭它,或者修复链接时库列表以便找到该函数。

我的猜测是你已经手动清除了库列表,因为默认情况下VS2010应该包含给定compiler options组的正确库。