Freigeben über


Compilerfehler C3347

'Arg': Das erforderliche Argument ist nicht im Attribut 'idl_modules' festgelegt.

Bemerkungen

Ein erforderliches Argument wurde nicht an das idl_module -Attribut übergeben.

Example

Im folgenden Beispiel wird C3347 generiert:

// C3347.cpp
// compile with: /c
[module(name="xx")];

[idl_module(dllname="x")];    // C3347
// try the following line instead
// [idl_module(name="test", dllname="x")];