X
xywen
Unregistered / Unconfirmed
GUEST, unregistred user!
如何将C中的结构转化为DELPHI中的 RECORD(类型)?
typedef unsigned char dpl_uint8_t;
typedef unsigned short dpl_uint16_t;
typedef unsigned int dpl_uint32_t;
typedef signed char dpl_int8_t;
typedef signed short dpl_int16_t;
typedef signed int dpl_int32_t;
struct cmppe_login{
char id[12];
char auth[12];
dpl_uint8_t type;
dpl_uint8_t version;
dpl_uint32_t timestamp;
}
typedef unsigned char dpl_uint8_t;
typedef unsigned short dpl_uint16_t;
typedef unsigned int dpl_uint32_t;
typedef signed char dpl_int8_t;
typedef signed short dpl_int16_t;
typedef signed int dpl_int32_t;
struct cmppe_login{
char id[12];
char auth[12];
dpl_uint8_t type;
dpl_uint8_t version;
dpl_uint32_t timestamp;
}