天天看點

Visual C++編譯錯誤:C4772

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.

意思就是說導入的庫檔案,需要另外一個庫,但是程式沒有導入