winebuild: Rename BuildSpec32File() for consistency.

Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Alexandre Julliard 2019-03-06 10:10:30 +01:00
parent 4576a93b5d
commit 0cdab409ad
3 changed files with 4 additions and 5 deletions

View File

@ -299,6 +299,7 @@ extern void output_exports( DLLSPEC *spec );
extern int load_res32_file( const char *name, DLLSPEC *spec ); extern int load_res32_file( const char *name, DLLSPEC *spec );
extern void output_resources( DLLSPEC *spec ); extern void output_resources( DLLSPEC *spec );
extern void output_bin_resources( DLLSPEC *spec, unsigned int start_rva ); 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_fake_module( DLLSPEC *spec );
extern void output_def_file( DLLSPEC *spec, int include_private ); extern void output_def_file( DLLSPEC *spec, int include_private );
extern void load_res16_file( const char *name, DLLSPEC *spec ); 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_res_o_file( DLLSPEC *spec );
extern void output_asm_relays16(void); extern void output_asm_relays16(void);
extern void BuildSpec32File( DLLSPEC *spec );
extern void add_16bit_exports( DLLSPEC *spec32, DLLSPEC *spec16 ); extern void add_16bit_exports( DLLSPEC *spec32, DLLSPEC *spec16 );
extern int parse_spec_file( FILE *file, DLLSPEC *spec ); extern int parse_spec_file( FILE *file, DLLSPEC *spec );
extern int parse_def_file( FILE *file, DLLSPEC *spec ); extern int parse_def_file( FILE *file, DLLSPEC *spec );

View File

@ -645,7 +645,7 @@ int main(int argc, char **argv)
output_spec16_file( spec ); output_spec16_file( spec );
break; break;
case SPEC_WIN32: case SPEC_WIN32:
BuildSpec32File( spec ); output_spec32_file( spec );
break; break;
default: assert(0); default: assert(0);
} }

View File

@ -695,11 +695,11 @@ void output_module( DLLSPEC *spec )
/******************************************************************* /*******************************************************************
* BuildSpec32File * output_spec32_file
* *
* Build a Win32 C file from a spec 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; needs_get_pc_thunk = 0;
resolve_imports( spec ); resolve_imports( spec );