Zitat von
glkgereon:
was sind unions?
Die solltest du auch als Delphiprogrammierer kennen.
Delphi-Quellcode:
type
TIP =
record
case Boolean
of
true: (
IP: Cardinal);
false: (IPParts:
Array[0..3]
of Byte);
end;
Zitat:
PIP = @TIP; //Pointer auf TIP(?)
Naja, nicht ganz
.
PIP = ^TIP;