defaultvtable
Definiert eine Schnittstelle als Standard-vtable-Schnittstelle für ein COM-Objekt.
Syntax
[ defaultvtable(interface) ]
Parameter
interface
Die festgelegte Schnittstelle, die die Standardversionstabelle für das COM-Objekt aufweisen soll.
Hinweise
Das standardmäßige C++-Attribut weist die gleiche Funktionalität wie das defaultvtable MIDL-Attribut auf.
Beispiel
Der folgende Code zeigt Attribute für eine Klasse, die eine Standardschnittstelle verwendet, um eine Standardschnittstelle anzugeben:
// cpp_attr_ref_defaultvtable.cpp
// compile with: /LD
#include <unknwn.h>
[module(name="MyLib")];
[object, uuid("00000000-0000-0000-0000-000000000001")]
__interface IMyI1 {
HRESULT x();
};
[object, uuid("00000000-0000-0000-0000-000000000002")]
__interface IMyI2 {
HRESULT x();
};
[object, uuid("00000000-0000-0000-0000-000000000003")]
__interface IMyI3 {
HRESULT x();
};
[coclass, source(IMyI3, IMyI1), default(IMyI3, IMyI2), defaultvtable(IMyI1),
uuid("00000000-0000-0000-0000-000000000004")]
class CMyC3 : public IMyI3 {};
Anforderungen
Attributkontext | Wert |
---|---|
Gilt für | class , struct |
Wiederholbar | No |
Erforderliche Attribute | coclass |
Ungültige Attribute | Keine |
Weitere Informationen finden Sie unter Attributkontexte.