Einzelnen Beitrag anzeigen

Furtbichler
(Gast)

n/a Beiträge
 
#4

AW: C Structures into Delphi

  Alt 5. Jan 2012, 21:03
Delphi-Quellcode:
Type
  TMyUnion = Record
    case boolean of
       false : (Foobar : Word);
       true : (Foo,Bar : Char);
   end;
Foobar and Foo, Bar have the same physical memory space, i.e. if you modify e.g. Foobar, Foo and Bar will also be modified.

Adapt this idea to your challenge.
  Mit Zitat antworten Zitat