Module: wine Branch: master Commit: 6d431c7337f6b010f82b633464bea04d91b292a9 URL: http://source.winehq.org/git/wine.git/?a=commit;h=6d431c7337f6b010f82b633464...
Author: Juan Lang juan.lang@gmail.com Date: Thu Oct 18 10:19:12 2007 -0700
cryptnet: Add CertDllVerifyRevocation stub.
---
dlls/cryptnet/cryptnet.spec | 2 +- dlls/cryptnet/cryptnet_main.c | 12 ++++++++++++ 2 files changed, 13 insertions(+), 1 deletions(-)
diff --git a/dlls/cryptnet/cryptnet.spec b/dlls/cryptnet/cryptnet.spec index 62a8823..9d89c15 100644 --- a/dlls/cryptnet/cryptnet.spec +++ b/dlls/cryptnet/cryptnet.spec @@ -1,5 +1,5 @@ @ stub CertDllVerifyCTLUsage -@ stub CertDllVerifyRevocation +@ stdcall CertDllVerifyRevocation(long long long ptr long ptr ptr) @ stub CryptnetWlxLogoffEvent @ stub LdapProvOpenStore @ stub CryptCancelAsyncRetrieval diff --git a/dlls/cryptnet/cryptnet_main.c b/dlls/cryptnet/cryptnet_main.c index 17b62f0..d8f072e 100644 --- a/dlls/cryptnet/cryptnet_main.c +++ b/dlls/cryptnet/cryptnet_main.c @@ -77,3 +77,15 @@ HRESULT WINAPI DllUnregisterServer(void) CERT_STORE_PROV_LDAP_W); return S_OK; } + +/*********************************************************************** + * CertDllVerifyRevocation (CRYPTNET.@) + */ +BOOL WINAPI CertDllVerifyRevocation(DWORD dwEncodingType, DWORD dwRevType, + DWORD cContext, void *rgpvContext[], DWORD dwFlags, + PCERT_REVOCATION_PARA pRevPara, PCERT_REVOCATION_STATUS pRevStatus) +{ + FIXME("(%08x, %d, %d, %p, %08x, %p, %p): stub\n", dwEncodingType, dwRevType, + cContext, rgpvContext, dwFlags, pRevPara, pRevStatus); + return FALSE; +}