コンパイラ エラー C3386
'type-name' :
__declspec(dllexport)
/__declspec(dllimport)
を WinRT 型には適用できません
dllimport
と dllexport
__declspec
修飾子は、マネージド型または Windows ランタイム型では有効でありません。
次の例では、C3386 を生成し、その修正方法を示しています。
// C3386.cpp
// compile with: /clr /c
ref class __declspec(dllimport) X1 { // C3386
// try the following line instead
// ref class X1 {
};