Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
0cdab409
Commit
0cdab409
authored
Mar 06, 2019
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winebuild: Rename BuildSpec32File() for consistency.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
4576a93b
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
5 deletions
+4
-5
build.h
tools/winebuild/build.h
+1
-2
main.c
tools/winebuild/main.c
+1
-1
spec32.c
tools/winebuild/spec32.c
+2
-2
No files found.
tools/winebuild/build.h
View file @
0cdab409
...
...
@@ -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
);
...
...
tools/winebuild/main.c
View file @
0cdab409
...
...
@@ -645,7 +645,7 @@ int main(int argc, char **argv)
output_spec16_file
(
spec
);
break
;
case
SPEC_WIN32
:
BuildSpec32F
ile
(
spec
);
output_spec32_f
ile
(
spec
);
break
;
default:
assert
(
0
);
}
...
...
tools/winebuild/spec32.c
View file @
0cdab409
...
...
@@ -695,11 +695,11 @@ void output_module( DLLSPEC *spec )
/*******************************************************************
*
BuildSpec32F
ile
*
output_spec32_f
ile
*
* Build a Win32 C file from a spec file.
*/
void
BuildSpec32F
ile
(
DLLSPEC
*
spec
)
void
output_spec32_f
ile
(
DLLSPEC
*
spec
)
{
needs_get_pc_thunk
=
0
;
resolve_imports
(
spec
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment