widl: Fix "static declaration follows non-static declaration" in generated code.

This commit is contained in:
Dan Hipschman 2006-07-28 18:08:13 -07:00 committed by Alexandre Julliard
parent 678ce9875f
commit cf4c08dcbc
1 changed files with 2 additions and 2 deletions

View File

@ -110,8 +110,8 @@ static void write_formatstringsdecl(void)
write_formatdesc( "TYPE" );
write_formatdesc( "PROC" );
fprintf(proxy, "\n");
print_proxy( "extern const MIDL_TYPE_FORMAT_STRING __MIDL_TypeFormatString;\n");
print_proxy( "extern const MIDL_PROC_FORMAT_STRING __MIDL_ProcFormatString;\n");
print_proxy( "static const MIDL_TYPE_FORMAT_STRING __MIDL_TypeFormatString;\n");
print_proxy( "static const MIDL_PROC_FORMAT_STRING __MIDL_ProcFormatString;\n");
print_proxy( "\n");
}