Hi, I'm a C programmer came across this Delphi function and have a few questions.
procedure Init(const key; size: Integer; filler: Byte = $FF); overload
- variable
keydoesn't have a type specified, what is the type of it in this case? - What does the "
$FF" means for the variablefiller?