Compilation conditionnelle (directive)
De Wiki1000
Version du 30 mai 2016 à 13:05 par Syfre (discuter | contributions)
begin {$IFDEF XX} // code if XX is defined {$ELSE} // code if XX is not defined {$ENDIF} end;
begin {$IFNDEF XX} // code if XX is not defined {$ELSE} // code if XX is defined {$ENDIF} end;