Re: Typed Pointer Assignment via Untyped Pointer Parameter not possible ?!?!?!



Oh well then I probably don't need to modify my linked list...

Since it would probably still require typecasts from typed pointer, to
untyped pointer if the list works with untyped pointers.

Might as well use the type checking feature of Delphi...

and make sure the external routines use the alias trick:

MyNode : PMyNode;
Node : Pnode absolute MyNode;

then just do:

List.Add( Node );

Bye,
Skybuck.


.