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
0fb4c051
Commit
0fb4c051
authored
Mar 14, 2022
by
Rémi Bernon
Committed by
Alexandre Julliard
Mar 14, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
windows.gaming.input: Fix IIterator_IInspectable trace messages.
Signed-off-by:
Rémi Bernon
<
rbernon@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
ace5d0ad
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
9 deletions
+5
-9
vector.c
dlls/windows.gaming.input/vector.c
+5
-9
No files found.
dlls/windows.gaming.input/vector.c
View file @
0fb4c051
...
...
@@ -104,9 +104,7 @@ static HRESULT WINAPI iterator_GetTrustLevel( IIterator_IInspectable *iface, Tru
static
HRESULT
WINAPI
iterator_get_Current
(
IIterator_IInspectable
*
iface
,
IInspectable
**
value
)
{
struct
iterator
*
impl
=
impl_from_IIterator_IInspectable
(
iface
);
FIXME
(
"
\n
"
);
TRACE
(
"iface %p, value %p.
\n
"
,
iface
,
value
);
return
IVectorView_IInspectable_GetAt
(
impl
->
view
,
impl
->
index
,
value
);
}
...
...
@@ -114,7 +112,7 @@ static HRESULT WINAPI iterator_get_HasCurrent( IIterator_IInspectable *iface, BO
{
struct
iterator
*
impl
=
impl_from_IIterator_IInspectable
(
iface
);
FIXME
(
"
\n
"
);
TRACE
(
"iface %p, value %p.
\n
"
,
iface
,
value
);
*
value
=
impl
->
index
<
impl
->
size
;
return
S_OK
;
...
...
@@ -124,7 +122,7 @@ static HRESULT WINAPI iterator_MoveNext( IIterator_IInspectable *iface, BOOL *va
{
struct
iterator
*
impl
=
impl_from_IIterator_IInspectable
(
iface
);
FIXME
(
"
\n
"
);
TRACE
(
"iface %p, value %p.
\n
"
,
iface
,
value
);
if
(
impl
->
index
<
impl
->
size
)
impl
->
index
++
;
return
IIterator_IInspectable_get_HasCurrent
(
iface
,
value
);
...
...
@@ -134,9 +132,7 @@ static HRESULT WINAPI iterator_GetMany( IIterator_IInspectable *iface, UINT32 it
IInspectable
**
items
,
UINT
*
count
)
{
struct
iterator
*
impl
=
impl_from_IIterator_IInspectable
(
iface
);
FIXME
(
"
\n
"
);
TRACE
(
"iface %p, items_size %u, items %p, count %p.
\n
"
,
iface
,
items_size
,
items
,
count
);
return
IVectorView_IInspectable_GetMany
(
impl
->
view
,
impl
->
index
,
items_size
,
items
,
count
);
}
...
...
@@ -635,7 +631,7 @@ static HRESULT WINAPI iterable_First( IIterable_IInspectable *iface, IIterator_I
IVectorView_IInspectable
*
view
;
HRESULT
hr
;
TRACE
(
"
\n
"
);
TRACE
(
"iface %p, value %p.
\n
"
,
iface
,
value
);
if
(
FAILED
(
hr
=
IVector_IInspectable_GetView
(
&
impl
->
IVector_IInspectable_iface
,
&
view
)))
return
hr
;
...
...
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