Francois Gouget : crypt32: Remove WINAPI on static functions where not needed.
Module: wine Branch: master Commit: 62122b660ff55df1a9db16c04ed51e9b40b11ea0 URL: http://source.winehq.org/git/wine.git/?a=commit;h=62122b660ff55df1a9db16c04e... Author: Francois Gouget <fgouget(a)free.fr> Date: Fri Nov 1 10:29:15 2013 +0100 crypt32: Remove WINAPI on static functions where not needed. --- dlls/crypt32/cert.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/crypt32/cert.c b/dlls/crypt32/cert.c index bc0f26d..0f14ffb 100644 --- a/dlls/crypt32/cert.c +++ b/dlls/crypt32/cert.c @@ -162,7 +162,7 @@ static const context_vtbl_t cert_vtbl = { Cert_clone }; -static BOOL WINAPI add_cert_to_store(WINECRYPT_CERTSTORE *store, const CERT_CONTEXT *cert, +static BOOL add_cert_to_store(WINECRYPT_CERTSTORE *store, const CERT_CONTEXT *cert, DWORD add_disposition, BOOL use_link, PCCERT_CONTEXT *ret_context) { const CERT_CONTEXT *existing = NULL;
participants (1)
-
Alexandre Julliard