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
7fb79e34
Commit
7fb79e34
authored
Apr 15, 2005
by
Jakob Eriksson
Committed by
Alexandre Julliard
Apr 15, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Win98 can return ERROR_CALL_NOT_IMPLEMENTED.
parent
49dc0b1e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
crypt.c
dlls/advapi32/tests/crypt.c
+4
-2
No files found.
dlls/advapi32/tests/crypt.c
View file @
7fb79e34
...
...
@@ -314,7 +314,8 @@ static void test_incorrect_api_usage(void)
dwLen
=
1
;
result
=
pCryptSignHashW
(
hHash
,
0
,
NULL
,
0
,
&
temp
,
&
dwLen
);
ok
(
!
result
&&
GetLastError
()
==
ERROR_INVALID_PARAMETER
,
"%ld
\n
"
,
GetLastError
());
ok
(
!
result
&&
(
GetLastError
()
==
ERROR_INVALID_PARAMETER
||
GetLastError
()
==
ERROR_CALL_NOT_IMPLEMENTED
),
"%ld
\n
"
,
GetLastError
());
result
=
pCryptSetKeyParam
(
hKey
,
0
,
&
temp
,
1
);
ok
(
!
result
&&
GetLastError
()
==
ERROR_INVALID_PARAMETER
,
"%ld
\n
"
,
GetLastError
());
...
...
@@ -326,7 +327,8 @@ static void test_incorrect_api_usage(void)
ok
(
!
result
&&
GetLastError
()
==
ERROR_INVALID_PARAMETER
,
"%ld
\n
"
,
GetLastError
());
result
=
pCryptVerifySignatureW
(
hHash
,
&
temp
,
1
,
hKey
,
NULL
,
0
);
ok
(
!
result
&&
GetLastError
()
==
ERROR_INVALID_PARAMETER
,
"%ld
\n
"
,
GetLastError
());
ok
(
!
result
&&
(
GetLastError
()
==
ERROR_INVALID_PARAMETER
||
GetLastError
()
==
ERROR_CALL_NOT_IMPLEMENTED
),
"%ld
\n
"
,
GetLastError
());
result
=
pCryptDestroyHash
(
hHash
);
ok
(
!
result
&&
GetLastError
()
==
ERROR_INVALID_PARAMETER
,
"%ld
\n
"
,
GetLastError
());
...
...
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