macro CLUSPROP_SZ_DECLARE (clusapi.h)
Crée une structure CLUSPROP_SZ avec le membre sz défini sur une taille déterminée par l’appelant.
Syntaxe
void CLUSPROP_SZ_DECLARE(
name,
cch
);
Paramètres
name
Nom de la structure CLUSPROP_SZ à créer.
cch
Taille (c’est-à-dire le nombre de caractères) du tableau sz member. Cette valeur doit être une constante.
Valeur de retour
Aucune
Remarques
ClusAPI.h définit CLUSPROP_SZ_DECLARE comme suit :
#define CLUSPROP_SZ_DECLARE( name, cch ) \
struct { \
CLUSPROP_SYNTAX Syntax; \
DWORD cbLength; \
WCHAR sz[(cch + 1) & ~1]; \
} name
Exemples
L’exemple suivant montre comment utiliser CLUSPROP_SZ_DECLARE :
WCHAR szNameData[] = L"Object Name";
CLUSPROP_SZ_DECLARE( NameValue, sizeof( szNameData ) / sizeof( WCHAR ) );
NameValue.Syntax.dw = CLUSPROP_SYNTAX_LIST_VALUE_SZ;
NameValue.cbLength = sizeof( szNameData );
StringCbCopy( NameValue.sz, NameValue.cbLength, szNameData );
Configuration requise
Client minimal pris en charge | Aucun pris en charge |
Serveur minimal pris en charge | Windows Server 2008 Entreprise, Windows Server 2008 Datacenter |
Plateforme cible | Windows |
En-tête | clusapi.h |