次の方法で共有


コンパイラ エラー C3740

テンプレートはイベントのソース、受け取りができません

テンプレート クラスまたは構造体に events を含めることはできません。

次の例では C3740 が生成されます:

// C3740.cpp
template <typename T>   // Delete the template specification
struct E {
   __event void f();   // C3740
};

int main() {
}