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
1833dc0b
Commit
1833dc0b
authored
Feb 22, 2023
by
Francois Gouget
Committed by
Alexandre Julliard
Feb 28, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mmdevapi/tests: WoW64 processes can read the properties from the registry.
Since Windows 10 2004 so consider the old limitation to be broken.
parent
5d3c0cf0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
propstore.c
dlls/mmdevapi/tests/propstore.c
+3
-1
No files found.
dlls/mmdevapi/tests/propstore.c
View file @
1833dc0b
...
...
@@ -183,7 +183,9 @@ static void test_setvalue_on_wow64(IPropertyStore *store)
/* should NOT find the key in 32-bit view */
ret
=
RegOpenKeyExW
(
HKEY_LOCAL_MACHINE
,
software_renderW
,
0
,
KEY_READ
,
&
root
);
ok
(
ret
==
ERROR_FILE_NOT_FOUND
,
"Wrong error when opening mmdevices Render key: %lu
\n
"
,
ret
);
todo_wine
ok
(
ret
==
0
||
broken
(
ret
==
ERROR_FILE_NOT_FOUND
/* win10 < 2004 */
),
"Wrong error when opening mmdevices Render key: %lu
\n
"
,
ret
);
}
START_TEST
(
propstore
)
...
...
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