香大侠看看,最下面的那个struct _iPod不能用@near修饰
enum PinStatus{
LOW_HIGH,
HIGH,
HIGH_LOW,
LOW
};
struct DoubleByte{
unsigned char byte0;
unsigned char byte1;
};
union BytesToWord{
unsigned int word16;
struct DoubleByte bytes;
};
struct _iPod{
enum PinStatus pin;
unsigned char IdentifyStatus;
unsigned char IDPS;
union BytesToWord DockTID;
union BytesToWord iPodTID;
};
|