Re: Alignment in structs
Re: Alignment in structs
- Subject: Re: Alignment in structs
- From: Rush Manbert <email@hidden>
- Date: Fri, 14 Jul 2006 15:59:37 -0700
Laurence Harris wrote:
What do I need to set in Xcode to get the size of this struct:
typedef struct Blah {
UInt32 a, b, c;
SInt16 d;
} Blah;
to be 14 instead of the 16 I'm getting currently? Thanks,
Try this:
typedef struct Blah {
UInt32 a, b, c;
SInt16 d;
} __attribute__((__packed__)) Blah;
- Rush
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Xcode-users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden