offsetof() et structure dans une structure
Publié : dim. 25/avr./2004 15:20
Le compilo n'admet pas cette synthaxe, qui me semble pourtant cohérente:
alors on est obligé de faire comme ça:
et c'est fatiguant.
Code : Tout sélectionner
Structure mastruc
entier.l
flottant.f
EndStructure
Structure mastrucplus
chaine.s
truc.mastruc
EndStructure
offset=OffsetOf(mastrucplus,truc\flottant)
Code : Tout sélectionner
Structure mastruc
entier.l
flottant.f
EndStructure
Structure mastrucplus
chaine.s
truc.mastruc
EndStructure
offset=OffsetOf(mastrucplus,truc)+OffsetOf(mastruc,flottant)