Added some stubs.

This commit is contained in:
Mike McCormack 2002-04-03 19:55:13 +00:00 committed by Alexandre Julliard
parent c48f3b07ae
commit 0bb784f69c
2 changed files with 57 additions and 1 deletions

View File

@ -17,14 +17,17 @@ debug_channels ()
@ stub CertAddEncodedCertificateToSystemStoreW @ stub CertAddEncodedCertificateToSystemStoreW
@ stub CertAddEnhancedKeyUsageIdentifier @ stub CertAddEnhancedKeyUsageIdentifier
@ stub CertAddSerializedElementToStore @ stub CertAddSerializedElementToStore
@ stub CertAddStoreToCollection
@ stub CertAlgIdToOID @ stub CertAlgIdToOID
@ stub CertCloseStore @ stub CertCloseStore
@ stub CertCompareCertificate @ stub CertCompareCertificate
@ stub CertCompareCertificateName @ stub CertCompareCertificateName
@ stub CertCompareIntegerBlob @ stub CertCompareIntegerBlob
@ stub CertComparePublicKeyInfo @ stub CertComparePublicKeyInfo
@ stub CertControlStore
@ stub CertCreateCRLContext @ stub CertCreateCRLContext
@ stub CertCreateCTLContext @ stub CertCreateCTLContext
@ stub CertCreateCertificateChainEngine
@ stub CertCreateCertificateContext @ stub CertCreateCertificateContext
@ stub CertDeleteCRLFromStore @ stub CertDeleteCRLFromStore
@ stub CertDeleteCTLFromStore @ stub CertDeleteCTLFromStore
@ -46,6 +49,8 @@ debug_channels ()
@ stub CertFindSubjectInCTL @ stub CertFindSubjectInCTL
@ stub CertFreeCRLContext @ stub CertFreeCRLContext
@ stub CertFreeCTLContext @ stub CertFreeCTLContext
@ stub CertFreeCertificateChain
@ stub CertFreeCertificateChainEngine
@ stub CertFreeCertificateContext @ stub CertFreeCertificateContext
@ stub CertGetCRLContextProperty @ stub CertGetCRLContextProperty
@ stub CertGetCRLFromStore @ stub CertGetCRLFromStore
@ -55,6 +60,7 @@ debug_channels ()
@ stub CertGetIntendedKeyUsage @ stub CertGetIntendedKeyUsage
@ stub CertGetIssuerCertificateFromStore @ stub CertGetIssuerCertificateFromStore
@ stub CertGetPublicKeyLength @ stub CertGetPublicKeyLength
@ stub CertGetCertificateChain
@ stub CertGetSubjectCertificateFromStore @ stub CertGetSubjectCertificateFromStore
@ stub CertIsRDNAttrsInCertificateName @ stub CertIsRDNAttrsInCertificateName
@ stub CertNameToStrA @ stub CertNameToStrA
@ -94,6 +100,7 @@ debug_channels ()
@ stub CryptEncodeObject @ stub CryptEncodeObject
@ stub CryptEncryptMessage @ stub CryptEncryptMessage
@ stub CryptEnumOIDFunction @ stub CryptEnumOIDFunction
@ stub CryptEnumOIDInfo
@ stub CryptEnumProvidersU @ stub CryptEnumProvidersU
@ stub CryptExportPKCS8 @ stub CryptExportPKCS8
@ stub CryptExportPublicKeyInfo @ stub CryptExportPublicKeyInfo
@ -161,13 +168,21 @@ debug_channels ()
@ stub CryptVerifyMessageSignatureWithKey @ stub CryptVerifyMessageSignatureWithKey
@ stub CryptVerifySignatureU @ stub CryptVerifySignatureU
@ stub I_CryptAllocTls @ stub I_CryptAllocTls
@ stdcall I_CryptCreateLruCache(long) I_CryptCreateLruCache
@ stub I_CryptCreateLruEntry
@ stub I_CryptDetachTls @ stub I_CryptDetachTls
@ stdcall I_CryptFindLruEntryData(long) I_CryptFindLruEntryData
@ stdcall I_CryptFlushLruCache(long) I_CryptFlushLruCache
@ stdcall I_CryptFreeLruCache(long) I_CryptFreeLruCache
@ stub I_CryptGetDefaultCryptProv @ stub I_CryptGetDefaultCryptProv
@ stub I_CryptGetDefaultCryptProvForEncrypt @ stub I_CryptGetDefaultCryptProvForEncrypt
@ stub I_CryptGetOssGlobal @ stub I_CryptGetOssGlobal
@ stub I_CryptGetTls @ stub I_CryptGetTls
@ stub I_CryptInsertLruEntry
@ stub I_CryptInstallOssGlobal @ stub I_CryptInstallOssGlobal
@ stub I_CryptReleaseLruEntry
@ stub I_CryptSetTls @ stub I_CryptSetTls
@ stub I_CryptUninstallOssGlobal
@ stub PFXExportCertStore @ stub PFXExportCertStore
@ stub PFXImportCertStore @ stub PFXImportCertStore
@ stub RegCreateHKCUKeyExU @ stub RegCreateHKCUKeyExU

View File

@ -1 +1,42 @@
/* FIXME: no implementation yet */ /*
* Copyright 2002 Mike McCormack for Codeweavers
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "config.h"
#include "winbase.h"
/* this function is called by Internet Explorer when it is about to verify a downloaded component */
WINAPI BOOL I_CryptCreateLruCache(DWORD x, DWORD y)
{
return FALSE;
}
/* these functions all have an unknown number of args */
WINAPI BOOL I_CryptFindLruEntryData(DWORD x)
{
return FALSE;
}
WINAPI BOOL I_CryptFlushLruCache(DWORD x)
{
return FALSE;
}
WINAPI BOOL I_CryptFreeLruCache(DWORD x)
{
return FALSE;
}