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
ea3dba9d
Commit
ea3dba9d
authored
Oct 05, 2015
by
Frédéric Delanoy
Committed by
Alexandre Julliard
Oct 06, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wbemprox: Silence some noisy FIXMEs.
Signed-off-by:
Frédéric Delanoy
<
frederic.delanoy@gmail.com
>
parent
7bbcc766
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
class.c
dlls/wbemprox/class.c
+4
-2
No files found.
dlls/wbemprox/class.c
View file @
ea3dba9d
...
...
@@ -114,13 +114,14 @@ static HRESULT WINAPI enum_class_object_Next(
{
struct
enum_class_object
*
ec
=
impl_from_IEnumWbemClassObject
(
iface
);
struct
view
*
view
=
ec
->
query
->
view
;
static
int
once
=
0
;
HRESULT
hr
;
TRACE
(
"%p, %d, %u, %p, %p
\n
"
,
iface
,
lTimeout
,
uCount
,
apObjects
,
puReturned
);
if
(
!
uCount
)
return
WBEM_S_FALSE
;
if
(
!
apObjects
||
!
puReturned
)
return
WBEM_E_INVALID_PARAMETER
;
if
(
lTimeout
!=
WBEM_INFINITE
)
FIXME
(
"timeout not supported
\n
"
);
if
(
lTimeout
!=
WBEM_INFINITE
&&
!
once
++
)
FIXME
(
"timeout not supported
\n
"
);
*
puReturned
=
0
;
if
(
ec
->
index
>=
view
->
count
)
return
WBEM_S_FALSE
;
...
...
@@ -162,10 +163,11 @@ static HRESULT WINAPI enum_class_object_Skip(
{
struct
enum_class_object
*
ec
=
impl_from_IEnumWbemClassObject
(
iface
);
struct
view
*
view
=
ec
->
query
->
view
;
static
int
once
=
0
;
TRACE
(
"%p, %d, %u
\n
"
,
iface
,
lTimeout
,
nCount
);
if
(
lTimeout
!=
WBEM_INFINITE
)
FIXME
(
"timeout not supported
\n
"
);
if
(
lTimeout
!=
WBEM_INFINITE
&&
!
once
++
)
FIXME
(
"timeout not supported
\n
"
);
if
(
!
view
->
count
)
return
WBEM_S_FALSE
;
...
...
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