Bonjour,
Supposons une fonction déclarée comme suit :
Comment se fait-il que les 2 écritures suivantes ne posent pas de problème :Code:const LPLINECALLSTATUS CTapiCall::GetCallStatus()
Ca je comprends ...Code:const LPLINECALLSTATUS lpStat = GetCallStatus();
Mais celle-là :
Ben le compilo ne dit rien (VC6) ... alors qu'l devrait dire qu'il manque un const, non ?Code:LPLINECALLSTATUS lpCall = GetCallStatus();
Il le dit poutant pour plein d'autres cas.
@+