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
e2030709
Commit
e2030709
authored
Feb 02, 2015
by
Mark Harmstone
Committed by
Alexandre Julliard
Feb 03, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mmdevapi: Do nothing on property store Commit.
parent
7b0d8651
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
2 deletions
+11
-2
devenum.c
dlls/mmdevapi/devenum.c
+11
-2
No files found.
dlls/mmdevapi/devenum.c
View file @
e2030709
...
@@ -1469,8 +1469,17 @@ static HRESULT WINAPI MMDevPropStore_SetValue(IPropertyStore *iface, REFPROPERTY
...
@@ -1469,8 +1469,17 @@ static HRESULT WINAPI MMDevPropStore_SetValue(IPropertyStore *iface, REFPROPERTY
static
HRESULT
WINAPI
MMDevPropStore_Commit
(
IPropertyStore
*
iface
)
static
HRESULT
WINAPI
MMDevPropStore_Commit
(
IPropertyStore
*
iface
)
{
{
FIXME
(
"stub
\n
"
);
MMDevPropStore
*
This
=
impl_from_IPropertyStore
(
iface
);
return
E_NOTIMPL
;
TRACE
(
"(%p)
\n
"
,
iface
);
if
(
This
->
access
!=
STGM_WRITE
&&
This
->
access
!=
STGM_READWRITE
)
return
STG_E_ACCESSDENIED
;
/* Does nothing - for mmdevapi, the propstore values are written on SetValue,
* not on Commit. */
return
S_OK
;
}
}
static
const
IPropertyStoreVtbl
MMDevPropVtbl
=
static
const
IPropertyStoreVtbl
MMDevPropVtbl
=
...
...
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