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
1cfb958a
Commit
1cfb958a
authored
Aug 27, 2008
by
Paul Vriens
Committed by
Alexandre Julliard
Aug 28, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleaut32/tests: Skip some tests on win9x.
parent
af8d268a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
2 deletions
+11
-2
typelib.c
dlls/oleaut32/tests/typelib.c
+11
-2
No files found.
dlls/oleaut32/tests/typelib.c
View file @
1cfb958a
...
...
@@ -585,6 +585,7 @@ static BOOL do_typelib_reg_key(GUID *uid, WORD maj, WORD min, LPCWSTR base, BOOL
WCHAR
buf
[
128
];
HKEY
hkey
;
BOOL
ret
=
TRUE
;
DWORD
res
;
memcpy
(
buf
,
typelibW
,
sizeof
(
typelibW
));
StringFromGUID2
(
uid
,
buf
+
lstrlenW
(
buf
),
40
);
...
...
@@ -597,8 +598,16 @@ static BOOL do_typelib_reg_key(GUID *uid, WORD maj, WORD min, LPCWSTR base, BOOL
wsprintfW
(
buf
+
lstrlenW
(
buf
),
formatW
,
maj
,
min
);
if
(
RegCreateKeyExW
(
HKEY_CLASSES_ROOT
,
buf
,
0
,
NULL
,
0
,
KEY_WRITE
,
NULL
,
&
hkey
,
NULL
)
!=
ERROR_SUCCESS
)
SetLastError
(
0xdeadbeef
);
res
=
RegCreateKeyExW
(
HKEY_CLASSES_ROOT
,
buf
,
0
,
NULL
,
0
,
KEY_WRITE
,
NULL
,
&
hkey
,
NULL
);
if
(
GetLastError
()
==
ERROR_CALL_NOT_IMPLEMENTED
)
{
win_skip
(
"W-calls are not implemented
\n
"
);
return
FALSE
;
}
if
(
res
!=
ERROR_SUCCESS
)
{
trace
(
"RegCreateKeyExW failed
\n
"
);
return
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