Added some stubs.
This commit is contained in:
parent
c48f3b07ae
commit
0bb784f69c
|
@ -17,14 +17,17 @@ debug_channels ()
|
|||
@ stub CertAddEncodedCertificateToSystemStoreW
|
||||
@ stub CertAddEnhancedKeyUsageIdentifier
|
||||
@ stub CertAddSerializedElementToStore
|
||||
@ stub CertAddStoreToCollection
|
||||
@ stub CertAlgIdToOID
|
||||
@ stub CertCloseStore
|
||||
@ stub CertCompareCertificate
|
||||
@ stub CertCompareCertificateName
|
||||
@ stub CertCompareIntegerBlob
|
||||
@ stub CertComparePublicKeyInfo
|
||||
@ stub CertControlStore
|
||||
@ stub CertCreateCRLContext
|
||||
@ stub CertCreateCTLContext
|
||||
@ stub CertCreateCertificateChainEngine
|
||||
@ stub CertCreateCertificateContext
|
||||
@ stub CertDeleteCRLFromStore
|
||||
@ stub CertDeleteCTLFromStore
|
||||
|
@ -46,6 +49,8 @@ debug_channels ()
|
|||
@ stub CertFindSubjectInCTL
|
||||
@ stub CertFreeCRLContext
|
||||
@ stub CertFreeCTLContext
|
||||
@ stub CertFreeCertificateChain
|
||||
@ stub CertFreeCertificateChainEngine
|
||||
@ stub CertFreeCertificateContext
|
||||
@ stub CertGetCRLContextProperty
|
||||
@ stub CertGetCRLFromStore
|
||||
|
@ -55,6 +60,7 @@ debug_channels ()
|
|||
@ stub CertGetIntendedKeyUsage
|
||||
@ stub CertGetIssuerCertificateFromStore
|
||||
@ stub CertGetPublicKeyLength
|
||||
@ stub CertGetCertificateChain
|
||||
@ stub CertGetSubjectCertificateFromStore
|
||||
@ stub CertIsRDNAttrsInCertificateName
|
||||
@ stub CertNameToStrA
|
||||
|
@ -94,6 +100,7 @@ debug_channels ()
|
|||
@ stub CryptEncodeObject
|
||||
@ stub CryptEncryptMessage
|
||||
@ stub CryptEnumOIDFunction
|
||||
@ stub CryptEnumOIDInfo
|
||||
@ stub CryptEnumProvidersU
|
||||
@ stub CryptExportPKCS8
|
||||
@ stub CryptExportPublicKeyInfo
|
||||
|
@ -161,13 +168,21 @@ debug_channels ()
|
|||
@ stub CryptVerifyMessageSignatureWithKey
|
||||
@ stub CryptVerifySignatureU
|
||||
@ stub I_CryptAllocTls
|
||||
@ stdcall I_CryptCreateLruCache(long) I_CryptCreateLruCache
|
||||
@ stub I_CryptCreateLruEntry
|
||||
@ 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_CryptGetDefaultCryptProvForEncrypt
|
||||
@ stub I_CryptGetOssGlobal
|
||||
@ stub I_CryptGetTls
|
||||
@ stub I_CryptInsertLruEntry
|
||||
@ stub I_CryptInstallOssGlobal
|
||||
@ stub I_CryptReleaseLruEntry
|
||||
@ stub I_CryptSetTls
|
||||
@ stub I_CryptUninstallOssGlobal
|
||||
@ stub PFXExportCertStore
|
||||
@ stub PFXImportCertStore
|
||||
@ stub RegCreateHKCUKeyExU
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue