Hi,
Is it possible to do conditional compilation for a structure in TI C/C++ compiler.
If not true for condition I want the compiler to show error during compilation. For example
For number of bytes in a structure
#if ((sizeof(structure)& 0x03) != 0)
#if (sizeof(structure)& 0x03)
For some byte aligned
#if ((&structure)& 0x03)
Regads,
Jeeva