From 6fe07057da21404bb38927bf966ea407ec6bce54 Mon Sep 17 00:00:00 2001 From: Amine Khaldi Date: Sun, 23 Jun 2013 12:42:00 +0000 Subject: [PATCH] [WIDL] * Don't mix static and extern (FORCEINLINE). svn path=/trunk/; revision=59311 --- reactos/tools/widl/header.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/tools/widl/header.c b/reactos/tools/widl/header.c index 704aaf8e472..24cd55344f5 100644 --- a/reactos/tools/widl/header.c +++ b/reactos/tools/widl/header.c @@ -952,7 +952,7 @@ static void write_inline_wrappers(FILE *header, const type_t *iface, const char if (!is_callas(func->attrs) && !is_inherited_method(iface, func)) { const var_t *arg; - fprintf(header, "static FORCEINLINE "); + fprintf(header, "FORCEINLINE "); write_type_decl_left(header, type_function_get_rettype(func->type)); fprintf(header, " %s_%s(", name, get_name(func)); write_args(header, type_get_function_args(func->type), name, 1, FALSE);