vararg
Spécifie que la fonction accepte un nombre variable d'arguments.
[vararg]
Notes
L'attribut de vararg C++ a les mêmes fonctionnalités que l'attribut de vararg MIDL.
Exemple
Le code suivant illustre une utilisation de vararg:
// cpp_attr_ref_vararg.cpp
// compile with: /LD
#include "unknwn.h"
#include "oaidl.h"
[module(name="MyLibrary")];
[object, uuid("00000000-0000-0000-0000-000000000001")]
__interface X : public IUnknown
{
[vararg] HRESULT Button([in, satype(VARIANT)]SAFEARRAY *psa);
};
Configuration requise
contexte d'attribut
S'applique à |
méthode d'interface |
reproductible |
Non |
attributs requis |
Aucun |
attributs valides |
Aucun |
Pour plus d'informations sur les contextes d'attribut, consultez contextes d'attribut.