Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
6db84ae4
Commit
6db84ae4
authored
Jan 13, 2008
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Jan 14, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winedump: Do not create a header file when not generating skeleton code.
The header file generated with "winedump spec" without the "-c" option just includes other headers.
parent
7687f78f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
4 deletions
+15
-4
output.c
tools/winedump/output.c
+15
-4
No files found.
tools/winedump/output.c
View file @
6db84ae4
...
@@ -138,6 +138,9 @@ static void output_spec_postamble (void)
...
@@ -138,6 +138,9 @@ static void output_spec_postamble (void)
*/
*/
void
output_header_preamble
(
void
)
void
output_header_preamble
(
void
)
{
{
if
(
!
globals
.
do_code
)
return
;
hfile
=
open_file
(
OUTPUT_DLL_NAME
,
"_dll.h"
,
"w"
);
hfile
=
open_file
(
OUTPUT_DLL_NAME
,
"_dll.h"
,
"w"
);
atexit
(
output_header_postamble
);
atexit
(
output_header_postamble
);
...
@@ -160,6 +163,9 @@ void output_header_preamble (void)
...
@@ -160,6 +163,9 @@ void output_header_preamble (void)
*/
*/
void
output_header_symbol
(
const
parsed_symbol
*
sym
)
void
output_header_symbol
(
const
parsed_symbol
*
sym
)
{
{
if
(
!
globals
.
do_code
)
return
;
assert
(
hfile
);
assert
(
hfile
);
assert
(
sym
&&
sym
->
symbol
);
assert
(
sym
&&
sym
->
symbol
);
...
@@ -210,10 +216,15 @@ void output_c_preamble (void)
...
@@ -210,10 +216,15 @@ void output_c_preamble (void)
fprintf
(
cfile
,
fprintf
(
cfile
,
"/*
\n
* %s.dll
\n
*
\n
* Generated from %s by winedump.
\n
*
\n
"
"/*
\n
* %s.dll
\n
*
\n
* Generated from %s by winedump.
\n
*
\n
"
" * DO NOT SUBMIT GENERATED DLLS FOR INCLUSION INTO WINE!
\n
*
\n
*/"
" * DO NOT SUBMIT GENERATED DLLS FOR INCLUSION INTO WINE!
\n
*
\n
*/"
"
\n\n
#include
\"
config.h
\"\n
#include
\"
%s_dll.h
\"\n\n
"
"
\n\n
#include
\"
config.h
\"\n\n
#include <stdarg.h>
\n\n
"
"WINE_DEFAULT_DEBUG_CHANNEL(%s);
\n\n
"
,
"#include
\"
windef.h
\"\n
#include
\"
winbase.h
\"\n
"
,
OUTPUT_DLL_NAME
,
globals
.
input_name
,
OUTPUT_DLL_NAME
,
OUTPUT_DLL_NAME
,
globals
.
input_name
);
if
(
globals
.
do_code
)
fprintf
(
cfile
,
"#include
\"
%s_dll.h
\"\n
"
,
OUTPUT_DLL_NAME
);
fprintf
(
cfile
,
"#include
\"
wine/debug.h
\"\n\n
WINE_DEFAULT_DEBUG_CHANNEL(%s);
\n\n
"
,
OUTPUT_DLL_NAME
);
OUTPUT_DLL_NAME
);
if
(
globals
.
forward_dll
)
if
(
globals
.
forward_dll
)
...
...
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