I am not sure how to represent pointers in protobuf-c.
When there is a structure like the following
struct EXAMPLE1
{
int32 x;
int32 *y;
};
how would I represent the pointer variable (y) in protobuf-c?
message EXAMPLE1
{
int32 x;
?? y;
}