Einzelnen Beitrag anzeigen

Benutzerbild von himitsu
himitsu

Registriert seit: 11. Okt 2003
Ort: Elbflorenz
44.184 Beiträge
 
Delphi 12 Athens
 
#4

Re: from ANSI_STRING to PAnsichar

  Alt 24. Okt 2009, 22:09
ANSI_STRING to String/PChar
Delphi-Quellcode:
var A: PANSI_STRING;
  S: AnsiString;
  P: PAnsiChar;

SetString(S, A.Buffer, A.Length);

P := PAnsiChar(S);
ANSI_STRING are not terminated with #0


[add]
Length = current length of the string
MaximumLength = maximum size of the buffer

see at MSDN-Library durchsuchenANSI_STRING
$2B or not $2B
  Mit Zitat antworten Zitat