Commit 0cdab409 authored by Alexandre Julliard's avatar Alexandre Julliard

winebuild: Rename BuildSpec32File() for consistency.

parent 4576a93b
......@@ -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 );
......
......@@ -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);
}
......
......@@ -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 );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment