widl: Remove DECLSPEC_HIDDEN from generated files.
This commit is contained in:
parent
19cc2439ed
commit
c7a2aaf234
3 changed files with 5 additions and 17 deletions
|
@ -468,10 +468,10 @@ static void write_clientinterfacedecl(type_t *iface)
|
|||
indent--;
|
||||
print_client("};\n");
|
||||
if (old_names)
|
||||
print_client("RPC_IF_HANDLE %s_ClientIfHandle DECLSPEC_HIDDEN = (RPC_IF_HANDLE)& %s___RpcClientInterface;\n",
|
||||
print_client("RPC_IF_HANDLE %s_ClientIfHandle = (RPC_IF_HANDLE)& %s___RpcClientInterface;\n",
|
||||
iface->name, iface->name);
|
||||
else
|
||||
print_client("RPC_IF_HANDLE %s%s_v%d_%d_c_ifspec DECLSPEC_HIDDEN = (RPC_IF_HANDLE)& %s___RpcClientInterface;\n",
|
||||
print_client("RPC_IF_HANDLE %s%s_v%d_%d_c_ifspec = (RPC_IF_HANDLE)& %s___RpcClientInterface;\n",
|
||||
prefix_client, iface->name, MAJORVERSION(ver), MINORVERSION(ver), iface->name);
|
||||
fprintf(client, "\n");
|
||||
}
|
||||
|
@ -500,10 +500,6 @@ static void init_client(void)
|
|||
print_client( "\n");
|
||||
print_client("#include \"%s\"\n", header_name);
|
||||
print_client( "\n");
|
||||
print_client( "#ifndef DECLSPEC_HIDDEN\n");
|
||||
print_client( "#define DECLSPEC_HIDDEN\n");
|
||||
print_client( "#endif\n");
|
||||
print_client( "\n");
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -86,10 +86,6 @@ static void init_proxy(const statement_list_t *stmts)
|
|||
print_proxy( "#define __midl_proxy\n");
|
||||
print_proxy( "#include \"objbase.h\"\n");
|
||||
print_proxy( "\n");
|
||||
print_proxy( "#ifndef DECLSPEC_HIDDEN\n");
|
||||
print_proxy( "#define DECLSPEC_HIDDEN\n");
|
||||
print_proxy( "#endif\n");
|
||||
print_proxy( "\n");
|
||||
}
|
||||
|
||||
static void clear_output_vars( const var_list_t *args )
|
||||
|
@ -1026,7 +1022,7 @@ static void write_proxy_routines(const statement_list_t *stmts)
|
|||
fprintf(proxy, "\n");
|
||||
}
|
||||
|
||||
fprintf(proxy, "const ExtendedProxyFileInfo %s_ProxyFileInfo DECLSPEC_HIDDEN =\n", file_id);
|
||||
fprintf(proxy, "const ExtendedProxyFileInfo %s_ProxyFileInfo =\n", file_id);
|
||||
fprintf(proxy, "{\n");
|
||||
fprintf(proxy, " (const PCInterfaceProxyVtblList*)_%s_ProxyVtblList,\n", file_id);
|
||||
fprintf(proxy, " (const PCInterfaceStubVtblList*)_%s_StubVtblList,\n", file_id);
|
||||
|
|
|
@ -433,10 +433,10 @@ static void write_serverinterfacedecl(type_t *iface)
|
|||
indent--;
|
||||
print_server("};\n");
|
||||
if (old_names)
|
||||
print_server("RPC_IF_HANDLE %s_ServerIfHandle DECLSPEC_HIDDEN = (RPC_IF_HANDLE)& %s___RpcServerInterface;\n",
|
||||
print_server("RPC_IF_HANDLE %s_ServerIfHandle = (RPC_IF_HANDLE)& %s___RpcServerInterface;\n",
|
||||
iface->name, iface->name);
|
||||
else
|
||||
print_server("RPC_IF_HANDLE %s%s_v%d_%d_s_ifspec DECLSPEC_HIDDEN = (RPC_IF_HANDLE)& %s___RpcServerInterface;\n",
|
||||
print_server("RPC_IF_HANDLE %s%s_v%d_%d_s_ifspec = (RPC_IF_HANDLE)& %s___RpcServerInterface;\n",
|
||||
prefix_server, iface->name, MAJORVERSION(ver), MINORVERSION(ver), iface->name);
|
||||
fprintf(server, "\n");
|
||||
}
|
||||
|
@ -453,10 +453,6 @@ static void init_server(void)
|
|||
print_server("#include <string.h>\n");
|
||||
fprintf(server, "\n");
|
||||
print_server("#include \"%s\"\n", header_name);
|
||||
print_server("\n");
|
||||
print_server( "#ifndef DECLSPEC_HIDDEN\n");
|
||||
print_server( "#define DECLSPEC_HIDDEN\n");
|
||||
print_server( "#endif\n");
|
||||
print_server( "\n");
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue