컴파일러 오류 C3370
'idl_module name': idl_module이 아직 정의되지 않았습니다.
idl_module 을 사용하여 DLL의 진입점을 지정하려면 먼저 idl_module
를 사용하여 DLL 이름을 지정해야 합니다.
다음 샘플에서는 C3370을 생성합니다.
// C3370.cpp
[module(name=MyLibrary)];
// uncomment the following line to resolve the error
// [idl_module(name="name1", dllname=x.dll)];
[idl_module(name="name1"), entry(100)] // C3370
int f1();
int main()
{
}