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
511b50e7
Commit
511b50e7
authored
Nov 01, 2018
by
Jacek Caban
Committed by
Alexandre Julliard
Nov 01, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
widl: Ignore -robust command line option.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
2761fc91
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
widl.c
tools/widl/widl.c
+7
-1
No files found.
tools/widl/widl.c
View file @
511b50e7
...
@@ -72,6 +72,7 @@ static const char usage[] =
...
@@ -72,6 +72,7 @@ static const char usage[] =
" --prefix-client=p Prefix names of client stubs with 'p'
\n
"
" --prefix-client=p Prefix names of client stubs with 'p'
\n
"
" --prefix-server=p Prefix names of server functions with 'p'
\n
"
" --prefix-server=p Prefix names of server functions with 'p'
\n
"
" -r Generate registration script
\n
"
" -r Generate registration script
\n
"
" -robust Ignored, present for midl compatibility
\n
"
" --winrt Enable Windows Runtime mode
\n
"
" --winrt Enable Windows Runtime mode
\n
"
" --ns_prefix Prefix namespaces with ABI namespace
\n
"
" --ns_prefix Prefix namespaces with ABI namespace
\n
"
" -s Generate server stub
\n
"
" -s Generate server stub
\n
"
...
@@ -163,7 +164,8 @@ enum {
...
@@ -163,7 +164,8 @@ enum {
WIN64_OPTION
,
WIN64_OPTION
,
WIN32_ALIGN_OPTION
,
WIN32_ALIGN_OPTION
,
WIN64_ALIGN_OPTION
,
WIN64_ALIGN_OPTION
,
APP_CONFIG_OPTION
APP_CONFIG_OPTION
,
ROBUST_OPTION
};
};
static
const
char
short_options
[]
=
static
const
char
short_options
[]
=
...
@@ -179,6 +181,7 @@ static const struct option long_options[] = {
...
@@ -179,6 +181,7 @@ static const struct option long_options[] = {
{
"prefix-all"
,
1
,
NULL
,
PREFIX_ALL_OPTION
},
{
"prefix-all"
,
1
,
NULL
,
PREFIX_ALL_OPTION
},
{
"prefix-client"
,
1
,
NULL
,
PREFIX_CLIENT_OPTION
},
{
"prefix-client"
,
1
,
NULL
,
PREFIX_CLIENT_OPTION
},
{
"prefix-server"
,
1
,
NULL
,
PREFIX_SERVER_OPTION
},
{
"prefix-server"
,
1
,
NULL
,
PREFIX_SERVER_OPTION
},
{
"robust"
,
0
,
NULL
,
ROBUST_OPTION
},
{
"winrt"
,
0
,
NULL
,
RT_OPTION
},
{
"winrt"
,
0
,
NULL
,
RT_OPTION
},
{
"win32"
,
0
,
NULL
,
WIN32_OPTION
},
{
"win32"
,
0
,
NULL
,
WIN32_OPTION
},
{
"win64"
,
0
,
NULL
,
WIN64_OPTION
},
{
"win64"
,
0
,
NULL
,
WIN64_OPTION
},
...
@@ -609,6 +612,9 @@ int main(int argc,char *argv[])
...
@@ -609,6 +612,9 @@ int main(int argc,char *argv[])
/* widl does not distinguish between app_mode and default mode,
/* widl does not distinguish between app_mode and default mode,
but we ignore this option for midl compatibility */
but we ignore this option for midl compatibility */
break
;
break
;
case
ROBUST_OPTION
:
/* FIXME: Support robust option */
break
;
case
'b'
:
case
'b'
:
set_target
(
optarg
);
set_target
(
optarg
);
break
;
break
;
...
...
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