[fpc-devel] Re: KOL for freepascal (was: Extend the librariespeople!)
Marco van de Voort
marcov at stack.nl
Tue Jun 7 14:15:57 CEST 2005
> |
> | Michael.
>
>
> We could put a link in the FPC wiki too.
>
> Yes I'm sure Thaddy will not mind at all..
He won't. I already talk to him from time to time.
I also still have a list of problems from Thaddy that he had to do for 2.0:
1)
procedure x(p:array of pchar);
begin
end;
x(['a','b']);
IOW some autoconversion problem
2)
constructs like
MOV EAX, [ECX].TRect.Bottom
Fail with: Trying to push memory location
3)
Works:
procedure TObj.Free;
begin
if @Self <> nil then
DoDestroy;
end;
doesn't work (while it apparantly should):
procedure TObj.Free;
begin
if Self <> nil then
DoDestroy;
end;
4)
procedure x (const str: string);
begin
filewrite (filedescriptor,pchar(str+#13#10)^,length(str)+2);
end;
More information about the fpc-devel
mailing list