我不确定如何在 protobuf-c 中表示指针。
当有如下结构时
struct EXAMPLE1
{
int32 x;
int32 *y;
};
我将如何表示 protobuf-c 中的指针变量(y)?
message EXAMPLE1
{
int32 x;
?? y;
}
我不确定如何在 protobuf-c 中表示指针。
当有如下结构时
struct EXAMPLE1
{
int32 x;
int32 *y;
};
我将如何表示 protobuf-c 中的指针变量(y)?
message EXAMPLE1
{
int32 x;
?? y;
}