>struct MyStruct{float x,float y};

Correct is:
Code:
struct MyStruct{float x;float y;};
Then it should work fine with:
MyStruct *PointerStruct;

If not, post some code, or explain the problem in more detail.