From 0cdab409adef2fe2e36b7ea47d313af20573df3e Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Wed, 6 Mar 2019 10:10:30 +0100 Subject: [PATCH] winebuild: Rename BuildSpec32File() for consistency. Signed-off-by: Alexandre Julliard --- tools/winebuild/build.h | 3 +-- tools/winebuild/main.c | 2 +- tools/winebuild/spec32.c | 4 ++-- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/tools/winebuild/build.h b/tools/winebuild/build.h index d7b46a6a477..fe925220e81 100644 --- a/tools/winebuild/build.h +++ b/tools/winebuild/build.h @@ -299,6 +299,7 @@ extern void output_exports( DLLSPEC *spec ); extern int load_res32_file( const char *name, DLLSPEC *spec ); extern void output_resources( DLLSPEC *spec ); extern void output_bin_resources( DLLSPEC *spec, unsigned int start_rva ); +extern void output_spec32_file( DLLSPEC *spec ); extern void output_fake_module( DLLSPEC *spec ); extern void output_def_file( DLLSPEC *spec, int include_private ); extern void load_res16_file( const char *name, DLLSPEC *spec ); @@ -311,8 +312,6 @@ extern void output_fake_module16( DLLSPEC *spec16 ); extern void output_res_o_file( DLLSPEC *spec ); extern void output_asm_relays16(void); -extern void BuildSpec32File( DLLSPEC *spec ); - extern void add_16bit_exports( DLLSPEC *spec32, DLLSPEC *spec16 ); extern int parse_spec_file( FILE *file, DLLSPEC *spec ); extern int parse_def_file( FILE *file, DLLSPEC *spec ); diff --git a/tools/winebuild/main.c b/tools/winebuild/main.c index 7769641b21b..d7bc39f8c8f 100644 --- a/tools/winebuild/main.c +++ b/tools/winebuild/main.c @@ -645,7 +645,7 @@ int main(int argc, char **argv) output_spec16_file( spec ); break; case SPEC_WIN32: - BuildSpec32File( spec ); + output_spec32_file( spec ); break; default: assert(0); } diff --git a/tools/winebuild/spec32.c b/tools/winebuild/spec32.c index 89f33c81ad6..0547ba2d4ec 100644 --- a/tools/winebuild/spec32.c +++ b/tools/winebuild/spec32.c @@ -695,11 +695,11 @@ void output_module( DLLSPEC *spec ) /******************************************************************* - * BuildSpec32File + * output_spec32_file * * Build a Win32 C file from a spec file. */ -void BuildSpec32File( DLLSPEC *spec ) +void output_spec32_file( DLLSPEC *spec ) { needs_get_pc_thunk = 0; resolve_imports( spec );