I had no problem accessing it, I just remove the 'struct' keywords from the 'Geometry_Struct' like so...
Code:
typedef struct { 
  	int Price;
  	Body_Struct* Pointer1;
  	Body_Struct* Pointer2;
} Geometry_Struct;



I'm not too sure why the manual uses the 'struct' keyword when defining a member also.