Module: wine Branch: master Commit: d9891887c7f24ad2fd99e5f3d06092d8ffc21db3 URL: http://source.winehq.org/git/wine.git/?a=commit;h=d9891887c7f24ad2fd99e5f3d0...
Author: Rob Shearman rob@codeweavers.com Date: Thu Feb 14 15:35:33 2008 +0000
crypt32: Fix function declaration - WINAPI should come after the return type.
---
dlls/crypt32/msg.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/crypt32/msg.c b/dlls/crypt32/msg.c index 30c0ddb..94e1df8 100644 --- a/dlls/crypt32/msg.c +++ b/dlls/crypt32/msg.c @@ -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) {