widl: Add the rest of the pointer types to write_type.

This commit is contained in:
Dan Hipschman 2006-08-28 18:30:16 -07:00 committed by Alexandre Julliard
parent b3a72ad1dd
commit 04a15af5dc

View File

@ -253,7 +253,10 @@ void write_type(FILE *h, type_t *t, const var_t *v, const char *n)
} }
else fprintf(h, "union %s", t->name); else fprintf(h, "union %s", t->name);
break; break;
case RPC_FC_RP:
case RPC_FC_UP:
case RPC_FC_FP: case RPC_FC_FP:
case RPC_FC_OP:
if (t->ref) write_type(h, t->ref, NULL, t->name); if (t->ref) write_type(h, t->ref, NULL, t->name);
fprintf(h, "*"); fprintf(h, "*");
break; break;