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
ab3bf16e
Commit
ab3bf16e
authored
Sep 23, 2008
by
Christian Costa
Committed by
Alexandre Julliard
Sep 24, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3dxof: Do not print an error for interfaces that can be queried to retrieve the…
d3dxof: Do not print an error for interfaces that can be queried to retrieve the type of the object.
parent
99829f1d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
3 deletions
+15
-3
d3dxof.c
dlls/d3dxof/d3dxof.c
+15
-3
No files found.
dlls/d3dxof/d3dxof.c
View file @
ab3bf16e
...
...
@@ -1177,7 +1177,11 @@ static HRESULT WINAPI IDirectXFileBinaryImpl_QueryInterface(IDirectXFileBinary*
return
S_OK
;
}
ERR
(
"(%p)->(%s,%p),not found
\n
"
,
This
,
debugstr_guid
(
riid
),
ppvObject
);
/* Do not print an error for interfaces that can be queried to retrieve the type of the object */
if
(
!
IsEqualGUID
(
riid
,
&
IID_IDirectXFileData
)
&&
!
IsEqualGUID
(
riid
,
&
IID_IDirectXFileDataReference
))
ERR
(
"(%p)->(%s,%p),not found
\n
"
,
This
,
debugstr_guid
(
riid
),
ppvObject
);
return
E_NOINTERFACE
;
}
...
...
@@ -1296,7 +1300,11 @@ static HRESULT WINAPI IDirectXFileDataImpl_QueryInterface(IDirectXFileData* ifac
return
S_OK
;
}
ERR
(
"(%p)->(%s,%p),not found
\n
"
,
This
,
debugstr_guid
(
riid
),
ppvObject
);
/* Do not print an error for interfaces that can be queried to retreive the type of the object */
if
(
!
IsEqualGUID
(
riid
,
&
IID_IDirectXFileBinary
)
&&
!
IsEqualGUID
(
riid
,
&
IID_IDirectXFileDataReference
))
ERR
(
"(%p)->(%s,%p),not found
\n
"
,
This
,
debugstr_guid
(
riid
),
ppvObject
);
return
E_NOINTERFACE
;
}
...
...
@@ -1488,7 +1496,11 @@ static HRESULT WINAPI IDirectXFileDataReferenceImpl_QueryInterface(IDirectXFileD
return
S_OK
;
}
ERR
(
"(%p)->(%s,%p),not found
\n
"
,
This
,
debugstr_guid
(
riid
),
ppvObject
);
/* Do not print an error for interfaces that can be queried to retreive the type of the object */
if
(
!
IsEqualGUID
(
riid
,
&
IID_IDirectXFileData
)
&&
!
IsEqualGUID
(
riid
,
&
IID_IDirectXFileBinary
))
ERR
(
"(%p)->(%s,%p),not found
\n
"
,
This
,
debugstr_guid
(
riid
),
ppvObject
);
return
E_NOINTERFACE
;
}
...
...
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