AW: Einbinden von OSCUtils in eigenes Programm
12. Sep 2021, 20:55
Hallo,
evtl. ist das hier was. (entsprechend anpassen)
Delphi-Quellcode:
procedure TIdBytestoTBytes(const Input: TIdBytes; var Output: TBytes);
var L: integer;
begin
L := Length(Input);
SetLength(Output,L);
move(Input[0],Output[0],L);
end;
https://stackoverflow.com/questions/...s-and-tidbytes
Gruß
Geändert von mmw (12. Sep 2021 um 21:07 Uhr)
|