|
我用C++写了一个服务端程序,里面用来封装到PACKET里的structure是:
//the structure of data of sending
struct gSensor_data{
static const int numsensors = NUM_SENSORS;
static const int numjoints = NUM_JOINTS;
long sensor_value[NUM_SENSORS];
long joint_value[NUM_JOINTS];
};
我已经用C++写了一个客户端,用同样的strucutre来接收,没有问题。
可是用C来写客户端就不行了。
如果我用C来写客户端的话,这个structure应该怎么定义呢? |
|