65,187
社区成员




struct TEST1
{
long iType;
long iLength;
};
struct TEST2
{
short iType;
int iLength;
};
struct MyStructure
{
unsigned char dataType;
union{
TEST1 t1;
TEST2 t2;
};
};
struct MyStructure
{
unsigned char dataType;
union{
TEST1 t1;
TEST2 t2;
};
int time;
};