mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 22:23:05 +00:00
sync schannel with wine 1.1.14
svn path=/trunk/; revision=39270
This commit is contained in:
parent
4d1d1fe9c5
commit
cf017c8a04
2 changed files with 14 additions and 2 deletions
|
@ -26,8 +26,8 @@
|
||||||
@ stdcall SpLsaModeInitialize(long ptr ptr ptr)
|
@ stdcall SpLsaModeInitialize(long ptr ptr ptr)
|
||||||
@ stdcall SpUserModeInitialize(long ptr ptr ptr)
|
@ stdcall SpUserModeInitialize(long ptr ptr ptr)
|
||||||
@ stub SslCrackCertificate
|
@ stub SslCrackCertificate
|
||||||
@ stub SslEmptyCacheA
|
@ stdcall SslEmptyCacheA(str long)
|
||||||
@ stub SslEmptyCacheW
|
@ stdcall SslEmptyCacheW(wstr long)
|
||||||
@ stub SslFreeCertificate
|
@ stub SslFreeCertificate
|
||||||
@ stub SslGenerateKeyPair
|
@ stub SslGenerateKeyPair
|
||||||
@ stub SslGenerateRandomBits
|
@ stub SslGenerateRandomBits
|
||||||
|
|
|
@ -38,3 +38,15 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
|
||||||
|
|
||||||
return TRUE;
|
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;
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue