Partager via


Erreur du compilateur C3115

'attribute' : cet attribut n’est pas autorisé sur 'construct'

Un attribut a été appliqué à une construction pour laquelle elle n’était pas prévue. Pour plus d’informations, consultez Attributs par utilisation .

Exemple

L’exemple suivant génère l’erreur C3115.

// C3115.cpp
// compile with: /c
#include <unknwn.h>
[module(name="xx")];

[object, helpstringdll(xx.dll), uuid("00000000-0000-0000-0000-000000000001")]   // C3115
// try the following line instead
// [object, uuid("00000000-0000-0000-0000-000000000001")]
__interface IMyI {
   HRESULT xx();
};