Visual C++编译错误:C4772

来源:互联网 发布:狸窝dvd制作软件 编辑:程序博客网 时间:2024/06/12 20:21
Visual C++ Concepts: Building a C/C++ Program 
Compiler Warning (level 1) C4772 

 

Error Message

#import referenced a type from a missing type library; 'missing_type' used as a placeholder

 

A type library was referenced with the #import directive. However, the type library contained a reference to another type library that was not referenced with #import. This other .tlb file was not found by the compiler.

Note that the compiler will not find type libraries in different directories if you use the /I (Additional Include Directories) compiler option to specify those directories. If you want the compiler to find type libraries in different directories, add those directories to the PATH environment variable.

This warning is, by default, issued as an error. C4772 can not be suppressed with /W0.

意思就是说导入的库文件,需要另外一个库,但是程序没有导入 

原创粉丝点击