Registriert seit: 16. Apr 2007
2.325 Beiträge
Turbo Delphi für Win32
|
Re: Problem mit Record Feld align unter Delphi 2009
14. Sep 2008, 13:34
Warum deklarierst du das Feld denn, wenn du es nicht verwendest? Delphi erlaubt auch Folgendes:
Delphi-Quellcode:
TAc_stream_info = record
stream_type: TAc_stream_type;
case byte of
0: (video_info: TAc_video_stream_info);
1: (audio_info: TAc_audio_stream_info);
end;
Wer erweist der Welt einen Dienst und findet ein gutes Synonym für "Pointer"?
"An interface pointer is a pointer to a pointer. This pointer points to an array of pointers, each of which points to an interface function."
|