crypt32: Fix compile error on older gnutls.
Signed-off-by: Alistair Leslie-Hughes <leslie_alistair@hotmail.com> Signed-off-by: Hans Leidekker <hans@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
650bd9481f
commit
02e2659a4e
|
@ -38,6 +38,12 @@ WINE_DEFAULT_DEBUG_CHANNEL(crypt);
|
|||
#ifdef SONAME_LIBGNUTLS
|
||||
WINE_DECLARE_DEBUG_CHANNEL(winediag);
|
||||
|
||||
/* Not present in gnutls version < 3.0 */
|
||||
int gnutls_pkcs12_simple_parse(gnutls_pkcs12_t p12, const char *password,
|
||||
gnutls_x509_privkey_t *key, gnutls_x509_crt_t **chain, unsigned int *chain_len,
|
||||
gnutls_x509_crt_t **extra_certs, unsigned int *extra_certs_len,
|
||||
gnutls_x509_crl_t * crl, unsigned int flags);
|
||||
|
||||
static void *libgnutls_handle;
|
||||
#define MAKE_FUNCPTR(f) static typeof(f) * p##f
|
||||
MAKE_FUNCPTR(gnutls_global_deinit);
|
||||
|
|
Loading…
Reference in New Issue