crypt32: Add stub for CryptEnumOIDInfo.

This commit is contained in:
Juan Lang 2006-02-03 12:28:33 +01:00 committed by Alexandre Julliard
parent 5ccae1aec9
commit b489f38193
2 changed files with 9 additions and 1 deletions

View File

@ -95,7 +95,7 @@
@ stdcall CryptEncodeObjectEx(long str ptr long ptr ptr ptr)
@ stub CryptEncryptMessage
@ stub CryptEnumOIDFunction
@ stub CryptEnumOIDInfo
@ stdcall CryptEnumOIDInfo(long long ptr ptr)
@ stub CryptEnumProvidersU
@ stub CryptExportPKCS8
@ stdcall CryptExportPublicKeyInfo(long long long ptr ptr)

View File

@ -76,6 +76,14 @@ void CRYPT_FreeFunctionSets(void)
DeleteCriticalSection(&funcSetCS);
}
BOOL WINAPI CryptEnumOIDInfo(DWORD dwGroupId, DWORD dwFlags, void *pvArg,
PFN_CRYPT_ENUM_OID_INFO pfnEnumOIDInfo)
{
FIXME("(%ld, %08lx, %p, %p): stub\n", dwGroupId, dwFlags, pvArg,
pfnEnumOIDInfo);
return TRUE;
}
/* There is no free function associated with this; therefore, the sets are
* freed when crypt32.dll is unloaded.
*/