schannel: Add stub implementations of SslEmptyCacheA/W.

This commit is contained in:
Hans Leidekker 2009-01-27 11:57:31 +01:00 committed by Alexandre Julliard
parent 56f5769364
commit 7bfa0d2c7f
2 changed files with 14 additions and 2 deletions

View File

@ -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

View File

@ -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;
}