mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-13 21:49:11 +02:00
* donewidestring has var instead of out parameter
git-svn-id: trunk@2535 -
This commit is contained in:
parent
f7d5dd13bf
commit
9b4ce0a501
@ -44,7 +44,7 @@ unit widestr;
|
||||
end;
|
||||
|
||||
procedure initwidestring(out r : pcompilerwidestring);
|
||||
procedure donewidestring(out r : pcompilerwidestring);
|
||||
procedure donewidestring(var r : pcompilerwidestring);
|
||||
procedure setlengthwidestring(r : pcompilerwidestring;l : SizeInt);
|
||||
function getlengthwidestring(r : pcompilerwidestring) : SizeInt;
|
||||
procedure concatwidestringchar(r : pcompilerwidestring;c : tcompilerwidechar);
|
||||
@ -74,7 +74,7 @@ unit widestr;
|
||||
r^.maxlen:=0;
|
||||
end;
|
||||
|
||||
procedure donewidestring(out r : pcompilerwidestring);
|
||||
procedure donewidestring(var r : pcompilerwidestring);
|
||||
|
||||
begin
|
||||
if assigned(r^.data) then
|
||||
|
Loading…
Reference in New Issue
Block a user