标识符“(变量)”未定义

时间:2015-09-22 12:16:41

标签: c visual-studio visual-studio-2013

我正在调试我的程序,但在VS2010 cnt中定义没有任何问题(相同的代码)。在VS2013中,cnt是“未定义”,这将导致程序出现故障。知道为什么吗?

int
adin_file_read(SP16 *buf, int sampnum)
{
    FILE *fp;
    int cnt = 0; //nº de bytes lido numa evocação da função adin_file_read
    fp = gfp;
    //sum_samples --> nº total de bytes lidos
    //global_size --> nº total de bytes do buffer de audio

    //Se é um ficheiro wav
    if (wav_p) {
        cnt = fread(buf, sizeof(SP16), sampnum, fp);
        if (cnt == 0) {
            if (feof(fp)) return -1; /* EOF */
            if (ferror(fp)) {
                jlog("Error: adin_file: an error occured while reading file\n");
                adin_file_close();
                return -2; /* error */
            }
        }
        if (nowlen + cnt > maxlen) {
            cnt = maxlen - nowlen;
        }
        nowlen += cnt;
    }
    else {  //Se é um RAW FILE
        //AXY5
        if (has_pre) {
            int i;
            has_pre = FALSE;

            for (i = 0; i <= sampnum; i++){
                if (i > global_size / sizeof(SP16)) {
                    cnt = i;
                    sum_samples = i;
                    break;
                }
                buf[i] = real_data[i];
            }

            if (cnt == 0) {
                if (sum_samples > global_size / sizeof(SP16)){
                    return -1;
                }
            } (.....continue).. return cnt;

vs2013 behavior

1 个答案:

答案 0 :(得分:1)

使用@JoachimPileborg的提示解决了问题。 说明是here,在这之后我重新启动了VS2013,现在正在运行。