Bonjour;

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
typedef UPROPSET* (*PGetPropSet)(
		_Out_opt_ ULONG* pNumPropSets,
		_Out_opt_ ULONG* pcElemPerSupported,
		_Out_opt_ UPROPSET* pSet,
		_In_ GUID* pguidSet);
utilisation :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
UPROPSET* pSet = (*pfnGetSet)(&m_cUPropSet, &m_cElemPerSupported, pSet, (GUID*)&GUID_NULL);
avec m_cUPropSet et m_cElemPerSupported sont initialisées à nul.

Merci pour les réponses.