Registriert seit: 14. Aug 2005
1.859 Beiträge
Delphi 11 Alexandria
|
Re: Delphi Record in File speicher, in C öffnen
9. Sep 2007, 17:21
Hallo chaoslion,
vielleicht hilft Dir das weiter.
Delphi-Quellcode:
typedef
struct
{char txt[81];
int len;
} TRec;
Delphi-Quellcode:
type
TRec = packed record
Txt: string[80];
Len: integer;
End;
Bis bald Chemiker
wer gesund ist hat 1000 wünsche wer krank ist nur einen.
|