|
Delphi string can be a short string, long string or a PChar type (null terminated). In your case, I guess it is a short string or a long string. If they are, the dword preceding will contain the length of string. So you need change it from 14 to 15 (0E to 0F). The Delphi long string need a null char (00) at the end of string content.
Regards,
TQN
|