fr := (dwTimeCode and $f) + (((dwTimeCode and $f0) shr 4) * 10);
ss := ((dwTimeCode and $f00) shr 8) + (((dwTimeCode and $F000) shr 12) * 10);
mm := ((dwTimeCode and $f0000) shr 16) + (((dwTimeCode and $F00000) shr 20) * 10);
hh := ((dwTimeCode and $f000000) shr 24) + (((dwTimeCode and $F0000000) shr 28) * 10);
|