mirror of
https://github.com/reactos/reactos.git
synced 2026-07-05 05:44:20 +08:00
sync schannel with wine 1.1.14
svn path=/trunk/; revision=39270
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user