widl: Add a newline between function prototypes for non-object interfaces.

This commit is contained in:
Rob Shearman 2008-04-02 12:56:27 +01:00 committed by Alexandre Julliard
parent 35ba23bd48
commit 5a378905be

View File

@ -871,7 +871,7 @@ static void write_function_proto(const type_t *iface, const func_t *fun, const c
write_args(header, fun->args, iface->name, 0, TRUE);
else
fprintf(header, " void");
fprintf(header, ");\n");
fprintf(header, ");\n\n");
}
static void write_function_protos(const type_t *iface)