Commit 7bfa0d2c authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

schannel: Add stub implementations of SslEmptyCacheA/W.

parent 56f57693
......@@ -26,8 +26,8 @@
@ stdcall SpLsaModeInitialize(long ptr ptr ptr)
@ stdcall SpUserModeInitialize(long ptr ptr ptr)
@ stub SslCrackCertificate
@ stub SslEmptyCacheA
@ stub SslEmptyCacheW
@ stdcall SslEmptyCacheA(str long)
@ stdcall SslEmptyCacheW(wstr long)
@ stub SslFreeCertificate
@ stub SslGenerateKeyPair
@ stub SslGenerateRandomBits
......
......@@ -38,3 +38,15 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
return TRUE;
}
BOOL WINAPI SslEmptyCacheA(LPSTR target, DWORD flags)
{
FIXME("%s %x\n", debugstr_a(target), flags);
return TRUE;
}
BOOL WINAPI SslEmptyCacheW(LPWSTR target, DWORD flags)
{
FIXME("%s %x\n", debugstr_w(target), flags);
return TRUE;
}
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