Compartilhar via


Erro do compilador C3373

o atributo 'attribute' não usa argumentos, exceto em um coclass

Alguns atributos podem ser aplicado a mais de um constructo C++, mas os argumentos para o atributo só podem ser permitidos em alguns constructos.

A amostra a seguir gera o erro C3373:

// C3373.cpp
#include <windows.h>

[module(name="MyModule")];

[ object, uuid(373a1a4c-469b-11d3-a6b0-00c04f79ae8f) ]
__interface IMyIface
{
   // arguments to source and restricted are not allowed when
   // these attributes are applied to an interface
   [source(IMyIface)] HRESULT f1();
   [restricted(IMyIface)] HRESULT f2(); // C3373
};

[ coclass, uuid(373a1a4d-469b-11d3-a6b0-00c04f79ae8f) ]
class CMyClass : public IMyIface {
};

int main() {
}