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
2952822e
Commit
2952822e
authored
Sep 04, 2015
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Sep 04, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleaut32/tests: Avoid using a reserved keyword '_restrict' in an idl.
parent
b6520ef6
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
tmarshal.c
dlls/oleaut32/tests/tmarshal.c
+2
-2
tmarshal.idl
dlls/oleaut32/tests/tmarshal.idl
+1
-1
No files found.
dlls/oleaut32/tests/tmarshal.c
View file @
2952822e
...
...
@@ -825,7 +825,7 @@ static HRESULT WINAPI Widget_put_prop_req_arg(
return
S_OK
;
}
static
HRESULT
WINAPI
Widget__restrict
(
IWidget
*
iface
,
INT
*
i
)
static
HRESULT
WINAPI
Widget_
pos
_restrict
(
IWidget
*
iface
,
INT
*
i
)
{
trace
(
"restrict
\n
"
);
*
i
=
DISPID_TM_RESTRICTED
;
...
...
@@ -875,7 +875,7 @@ static const struct IWidgetVtbl Widget_VTable =
Widget_ByRefUInt
,
Widget_put_prop_opt_arg
,
Widget_put_prop_req_arg
,
Widget__restrict
,
Widget_
pos
_restrict
,
Widget_neg_restrict
};
...
...
dlls/oleaut32/tests/tmarshal.idl
View file @
2952822e
...
...
@@ -175,7 +175,7 @@ library TestTypelib
HRESULT
prop_req_arg
(
[
in
]
INT
req
,
[
in
]
INT
i
)
;
[
id
(
DISPID_TM_RESTRICTED
),
restricted
]
HRESULT
_restrict
(
[
out
,
retval
]
INT
*
i
)
;
HRESULT
pos
_restrict
(
[
out
,
retval
]
INT
*
i
)
;
[
id
(
DISPID_TM_NEG_RESTRICTED
),
restricted
]
HRESULT
neg_restrict
(
[
out
,
retval
]
INT
*
i
)
;
...
...
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