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
c8221e29
Commit
c8221e29
authored
Feb 16, 2015
by
Henri Verbeet
Committed by
Alexandre Julliard
Feb 16, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dxgi: Implement dxgi_output_SetPrivateDataInterface().
parent
7e2423e1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
output.c
dlls/dxgi/output.c
+4
-2
No files found.
dlls/dxgi/output.c
View file @
c8221e29
...
@@ -90,9 +90,11 @@ static HRESULT STDMETHODCALLTYPE dxgi_output_SetPrivateData(IDXGIOutput *iface,
...
@@ -90,9 +90,11 @@ static HRESULT STDMETHODCALLTYPE dxgi_output_SetPrivateData(IDXGIOutput *iface,
static
HRESULT
STDMETHODCALLTYPE
dxgi_output_SetPrivateDataInterface
(
IDXGIOutput
*
iface
,
static
HRESULT
STDMETHODCALLTYPE
dxgi_output_SetPrivateDataInterface
(
IDXGIOutput
*
iface
,
REFGUID
guid
,
const
IUnknown
*
object
)
REFGUID
guid
,
const
IUnknown
*
object
)
{
{
FIXME
(
"iface %p, guid %s, object %p stub!
\n
"
,
iface
,
debugstr_guid
(
guid
),
object
);
struct
dxgi_output
*
output
=
impl_from_IDXGIOutput
(
iface
);
return
E_NOTIMPL
;
TRACE
(
"iface %p, guid %s, object %p.
\n
"
,
iface
,
debugstr_guid
(
guid
),
object
);
return
dxgi_set_private_data_interface
(
&
output
->
private_store
,
guid
,
object
);
}
}
static
HRESULT
STDMETHODCALLTYPE
dxgi_output_GetPrivateData
(
IDXGIOutput
*
iface
,
static
HRESULT
STDMETHODCALLTYPE
dxgi_output_GetPrivateData
(
IDXGIOutput
*
iface
,
...
...
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