digitalmars.D - __attribute__((packed));
- Trevor Parscal <Trevor_member pathlink.com> Feb 17 2006
- "Walter Bright" <newshound digitalmars.com> Feb 17 2006
How do I perform the same functionality of
struct FOO
{
int bar;
} __attribute__((packed));
which is C code... in D? (specifcally the __attribute__((packed)) part)
Thanks,
Trevor Parscal
Feb 17 2006
"Trevor Parscal" <Trevor_member pathlink.com> wrote in message news:dt65s7$16db$1 digitaldaemon.com...How do I perform the same functionality of struct FOO { int bar; } __attribute__((packed)); which is C code... in D? (specifcally the __attribute__((packed)) part)
align (1)
Feb 17 2006








"Walter Bright" <newshound digitalmars.com>