添加的dshow_h错误: ctlutil.h(278) : error C4430

c:/dxsdk/samples/c++/directshow/baseclasses/ctlutil.h(278) : error C4430: 缺少类型说明符 - 假定为 int。注意: C++ 不支持默认 int

该错误出现在使用DirectX开发过程中的,出现在文件ctlutil.h中的下面的代码里:

private:
    //  Prevent bugs from constructing from LONG (which gets
    //  converted to double and then multiplied by 10000000
    COARefTime(LONG);
    operator=(LONG);//错误提示在这里
};

 

你可能感兴趣的:(添加的dshow_h错误: ctlutil.h(278) : error C4430)