advapi32/tests: CryptVerifySignatureW is not implemented on win98.

This commit is contained in:
Paul Vriens 2008-02-13 18:38:44 +01:00 committed by Alexandre Julliard
parent ad711256a4
commit e2de4b18e5
1 changed files with 5 additions and 0 deletions

View File

@ -400,6 +400,11 @@ static void test_verify_sig(void)
SetLastError(0xdeadbeef);
ret = pCryptVerifySignatureW(0, NULL, 0, 0, NULL, 0);
if (!ret && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
{
skip("CryptVerifySignatureW is not implemented\n");
return;
}
ok(!ret && GetLastError() == ERROR_INVALID_PARAMETER,
"Expected ERROR_INVALID_PARAMETER, got %08x\n", GetLastError());
ret = pCryptAcquireContextA(&prov, szKeySet, NULL, PROV_RSA_FULL,