Module: wine Branch: master Commit: f80e4aa9d249b9708199382d53ebe836bea875d1 URL: http://source.winehq.org/git/wine.git/?a=commit;h=f80e4aa9d249b9708199382d53...
Author: Michael Karcher wine@mkarcher.dialup.fu-berlin.de Date: Sun Jan 11 14:57:47 2009 +0100
widl: Don't forget conformance info on [iid_is] void pointers.
---
tools/widl/typegen.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/tools/widl/typegen.c b/tools/widl/typegen.c index 2b0e414..da5c29b 100644 --- a/tools/widl/typegen.c +++ b/tools/widl/typegen.c @@ -3046,7 +3046,7 @@ static void write_parameter_conf_or_var_exprs(FILE *file, int indent, const char } break; } - else if (type->type == RPC_FC_IP) + else if (type->type == RPC_FC_IP || is_void(type)) { expr_t *iid;