I have a situation where something like this happens:
procedure FrmTeste.Teste;
var
iSinc: LongInt;
const
ACAO_PROX: LongInt = $0008;
begin
iSinc := iSinc or ACAO_PROX;
end;
I could not understand which value receives iSinc when entering this function, what actually happens?