Quelqu'un pourrait-il me traduire ce qui suit en WInDev ? C'est pour lire la carte d'identité belge. Merçi d'avance.
Interface:
Interface IRetStatus { long *GetGeneral(); long *GetPCSC(); long *GetSystem(); VARIANT * GetCardSW( ); ‘ VARIANTtype : VT_ARRAY | VT_UI1 }
Interface IMapCollection { VARIANT * GetValue( [IN] BSTR strKey ); void SetValue( [IN] BSTR strKey,[IN] VARIANT vtValue); long GetCount(); }
Interface ICertif { VARIANT * GetCertif();‘ VARIANTtype : VT_ARRAY | VT_UI1 BSTR * GetLabel(); long * GetStatus(); }
Interface ICertifCheck { long * GetPolicy(); long * GetSignatureCheck(); VARIANT *GetCertificates();‘ Array of ICertif, VARIANT type:VT_ARRAY | VT_DISPATCH }
Fonction: ‘ The IMapcollection contains Key/Value pairs of the returned data. ‘ The keys are predefinedin ordertonotredefine theinterface on new versions ‘ Keys:CardNumber,ChipNumber,BeginValidityDate,EndValidityDate,IssuingMunicipality, NationalNumber,Name,FirstName1,FirstName2,FirstName3,Nationality, BirthPlace,BirthDate,Gender,NobilityTitle,DocumentType,WhiteCane, YellowCane, ExtendedMinority
IRetStatus * GetID( [OUT] IMapCollection ** ppMapCollection [OUT] ICertifCheck ** ppCertifCheck ); |