[ Home | Contents | Search | Next | Previous | Up ]
![]()
Date: 23 Jul 2000
Time: 23:22:30
Remote Name: ???
Example:
// This can go in a separate reusable header
#ifdef __GNUG__
# define ATTRIBUTE_PACKED __attribute__ ((packed))
#else
# define ATTRIBUTE_PACKED
#endif
// This is in your appexpert class header
struct MyClassXfer {
//{{MyClassXFER_DATA}}
char edit_control[ 255 ];
TComboBoxData combobox_control;
//{{MyClassXFER_DATA_END}}
} ATTRIBUTE_PACKED;
^^^^^^^^^^^^^^^^ need to add this
![]()