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
39d4d12c
Commit
39d4d12c
authored
Aug 08, 2009
by
Marcus Meissner
Committed by
Alexandre Julliard
Aug 10, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wrc: Handle "no files == stdin".
parent
05153596
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
wrc.c
tools/wrc/wrc.c
+7
-0
No files found.
tools/wrc/wrc.c
View file @
39d4d12c
...
...
@@ -514,6 +514,13 @@ int main(int argc,char *argv[])
}
if
(
load_file
(
input_name
,
output_name
))
exit
(
1
);
}
/* stdin special case. NULL means "stdin" for wpp. */
if
(
nb_files
==
0
)
{
if
(
!
output_name
&&
!
preprocess_only
)
output_name
=
strdup
(
"wrc.tab.res"
);
if
(
load_file
(
NULL
,
output_name
))
exit
(
1
);
}
if
(
debuglevel
&
DEBUGLEVEL_DUMP
)
dump_resources
(
resource_top
);
...
...
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