Re: Typed Pointer Assignment via Untyped Pointer Parameter not possible ?!?!?!
by "Skybuck Flying" <spam@[EMAIL PROTECTED]
>
Mar 29, 2008 at 08:41 AM
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.