crypt32: Static functions CertContext_GetProperty and CertContext_SetProperty do not need to be WINAPI.

This commit is contained in:
Aric Stewart 2008-10-31 15:16:52 -05:00 committed by Alexandre Julliard
parent c83ff71293
commit c009f9c9ee
1 changed files with 4 additions and 4 deletions

View File

@ -37,7 +37,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(crypt);
* CertGetCertificateContextProperty, and are particular to the store in which * CertGetCertificateContextProperty, and are particular to the store in which
* the property exists (which is separate from the context.) * the property exists (which is separate from the context.)
*/ */
static BOOL WINAPI CertContext_GetProperty(void *context, DWORD dwPropId, static BOOL CertContext_GetProperty(void *context, DWORD dwPropId,
void *pvData, DWORD *pcbData); void *pvData, DWORD *pcbData);
/* Internal version of CertSetCertificateContextProperty that sets properties /* Internal version of CertSetCertificateContextProperty that sets properties
@ -45,7 +45,7 @@ static BOOL WINAPI CertContext_GetProperty(void *context, DWORD dwPropId,
* type.) Doesn't handle special cases, since they're handled by * type.) Doesn't handle special cases, since they're handled by
* CertSetCertificateContextProperty anyway. * CertSetCertificateContextProperty anyway.
*/ */
static BOOL WINAPI CertContext_SetProperty(void *context, DWORD dwPropId, static BOOL CertContext_SetProperty(void *context, DWORD dwPropId,
DWORD dwFlags, const void *pvData); DWORD dwFlags, const void *pvData);
BOOL WINAPI CertAddEncodedCertificateToStore(HCERTSTORE hCertStore, BOOL WINAPI CertAddEncodedCertificateToStore(HCERTSTORE hCertStore,
@ -188,7 +188,7 @@ static BOOL CertContext_CopyParam(void *pvData, DWORD *pcbData, const void *pb,
return ret; return ret;
} }
static BOOL WINAPI CertContext_GetProperty(void *context, DWORD dwPropId, static BOOL CertContext_GetProperty(void *context, DWORD dwPropId,
void *pvData, DWORD *pcbData) void *pvData, DWORD *pcbData)
{ {
PCCERT_CONTEXT pCertContext = (PCCERT_CONTEXT)context; PCCERT_CONTEXT pCertContext = (PCCERT_CONTEXT)context;
@ -440,7 +440,7 @@ static BOOL CertContext_SetKeyProvInfoProperty(PCONTEXT_PROPERTY_LIST properties
return ret; return ret;
} }
static BOOL WINAPI CertContext_SetProperty(void *context, DWORD dwPropId, static BOOL CertContext_SetProperty(void *context, DWORD dwPropId,
DWORD dwFlags, const void *pvData) DWORD dwFlags, const void *pvData)
{ {
PCONTEXT_PROPERTY_LIST properties = PCONTEXT_PROPERTY_LIST properties =