crypt32: Fix function declaration - WINAPI should come after the return type.

This commit is contained in:
Rob Shearman 2008-02-14 15:35:33 +00:00 committed by Alexandre Julliard
parent 4510346b4f
commit d9891887c7
1 changed files with 1 additions and 1 deletions

View File

@ -109,7 +109,7 @@ static void CDataEncodeMsg_Close(HCRYPTMSG hCryptMsg)
LocalFree(msg->bare_content);
}
static WINAPI BOOL CRYPT_EncodeContentLength(DWORD dwCertEncodingType,
static BOOL WINAPI CRYPT_EncodeContentLength(DWORD dwCertEncodingType,
LPCSTR lpszStructType, const void *pvStructInfo, DWORD dwFlags,
PCRYPT_ENCODE_PARA pEncodePara, BYTE *pbEncoded, DWORD *pcbEncoded)
{