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
053db33a
Commit
053db33a
authored
Oct 23, 2000
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed duplication of typename in 16-bit assembly output.
parent
ec936350
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
writeres.c
tools/wrc/writeres.c
+7
-7
No files found.
tools/wrc/writeres.c
View file @
053db33a
...
...
@@ -840,15 +840,15 @@ static void write_rsc_names(FILE *fp, resource_t *top)
{
res_count_t
*
rcp
=
&
rcarray
[
i
];
if
(
rcp
->
type
.
type
==
name_str
)
{
fprintf
(
fp
,
"%s_%s_typename:
\n
"
,
prefix
,
rcp
->
type
.
name
.
s_name
->
str
.
cstr
);
write_name_str
(
fp
,
&
(
rcp
->
type
));
}
for
(
j
=
0
;
j
<
rcp
->
count
;
j
++
)
{
if
(
rcp
->
type
.
type
==
name_str
)
{
fprintf
(
fp
,
"%s_%s_typename:
\n
"
,
prefix
,
rcp
->
type
.
name
.
s_name
->
str
.
cstr
);
write_name_str
(
fp
,
&
(
rcp
->
type
));
}
if
(
rcp
->
rscarray
[
j
]
->
name
->
type
==
name_str
)
{
fprintf
(
fp
,
"%s%s_name:
\n
"
,
...
...
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