Commit 82c11ce0 authored by Dan Hipschman's avatar Dan Hipschman Committed by Alexandre Julliard

widl: Allow write_type to output full pointer types.

parent a98ccb54
......@@ -297,6 +297,10 @@ void write_type(FILE *h, type_t *t, const var_t *v, const char *n)
}
else fprintf(h, "union %s", t->name);
break;
case RPC_FC_FP:
if (t->ref) write_type(h, t->ref, NULL, t->name);
fprintf(h, "*");
break;
default:
fprintf(h, "(unknown-type:%d)", t->type);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment