Commit e2ab4d03 authored by Eric Kohl's avatar Eric Kohl Committed by Alexandre Julliard

Added stub for CryptSetKeyParams().

parent 8d8a123c
......@@ -31,5 +31,11 @@ CryptAcquireContextA( HCRYPTPROV *phProv, LPCSTR pszContainer,
return FALSE;
}
BOOL WINAPI
CryptSetKeyParam( HCRYPTKEY hKey, DWORD dwParam, BYTE *pbData, DWORD dwFlags)
{
FIXME_(advapi)("(%x, %lx, %p, %lx): stub!\n",
hKey, dwParam, pbData, dwFlags);
return FALSE;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment