Rob Shearman : widl: Add a newline between function prototypes for non-object interfaces.
Module: wine Branch: master Commit: 5a378905bedb264ad1667d1ecbb0067b065bddbb URL: http://source.winehq.org/git/wine.git/?a=commit;h=5a378905bedb264ad1667d1ecb... Author: Rob Shearman <rob(a)codeweavers.com> Date: Wed Apr 2 12:56:27 2008 +0100 widl: Add a newline between function prototypes for non-object interfaces. --- tools/widl/header.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/tools/widl/header.c b/tools/widl/header.c index d2f7ae4..9fe5082 100644 --- a/tools/widl/header.c +++ b/tools/widl/header.c @@ -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)
participants (1)
-
Alexandre Julliard