CRYPT32: define some Cert* functions

Mike McCormack mike at codeweavers.com
Mon Jun 6 05:34:37 CDT 2005


ChangeLog:
* define some Cert* functions
-------------- next part --------------
Index: include/wincrypt.h
===================================================================
RCS file: /home/wine/wine/include/wincrypt.h,v
retrieving revision 1.37
diff -u -p -r1.37 wincrypt.h
--- include/wincrypt.h	2 Jun 2005 19:40:30 -0000	1.37
+++ include/wincrypt.h	6 Jun 2005 10:36:11 -0000
@@ -1510,6 +1510,16 @@ BOOL WINAPI CertCloseStore( HCERTSTORE h
 
 BOOL WINAPI CertFreeCertificateContext( PCCERT_CONTEXT pCertContext );
 
+BOOL WINAPI CertFreeCRLContext( PCCRL_CONTEXT pCrlContext );
+
+BOOL WINAPI CertAddCRLContextToStore( HCERTSTORE hCertStore,
+ PCCRL_CONTEXT pCrlContext, DWORD dwAddDisposition,
+ PCCRL_CONTEXT *ppStoreContext );
+
+PCCERT_CONTEXT WINAPI CertFindCertificateInStore( HCERTSTORE hCertStore,
+ DWORD dwCertEncodingType, DWORD dwFindFlags, DWORD dwFindType,
+ const void *pvFindPara, PCCERT_CONTEXT pPrevCertContext );
+
 BOOL WINAPI CryptEncodeObject(DWORD dwCertEncodingType, LPCSTR lpszStructType,
  const void *pvStructInfo, BYTE *pbEncoded, DWORD *pcbEncoded);
 BOOL WINAPI CryptEncodeObjectEx(DWORD dwCertEncodingType, LPCSTR lpszStructType,


More information about the wine-patches mailing list