Einzelnen Beitrag anzeigen

mmw
(Gast)

n/a Beiträge
 
#2

AW: Einbinden von OSCUtils in eigenes Programm

  Alt 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)
  Mit Zitat antworten Zitat