Everywhere you have Prox. you need to replace it with Prox->.
That should fix the syntax errors, but the code still won't run correctly. You have defined the pointer, but you need to point it at a valid Prox object. You should either:
Replace line 17 with Tipo_Lista *Prox = new Tipo_Lista;
and add delete Prox; at line 28