컴파일러 오류 C3131
프로젝트에 'name' 속성이 있는 'module' 특성이 있어야 합니다.
모듈 특성에는 이름 매개 변수가 있어야 합니다.
다음 샘플에서는 C3131을 생성합니다.
// C3131.cpp
[emitidl];
[module]; // C3131
// try the following line instead
// [module (name="MyLib")];
[public]
typedef long int LongInt;