Kompilatorfel C3174

modulattribut har inte angetts

Anmärkningar

Ett program som använder Visual C++-attribut använde inte heller modulattributet , vilket krävs i alla program som använder attribut.

Example

I följande exempel genereras C3174:

// C3174.cpp
// C3174 expected
// uncomment the following line to resolve this C3174
// [module(name="x")];
[export]
struct S
{
   int i;
};

int main()
{
}