X-Git-Url: https://git.notmuchmail.org/git?a=blobdiff_plain;f=util%2Fcrypto.h;h=1a90f0e00321fc73d1e93d8808ae602222b5048e;hb=9fbc5cb578c60762ab9c2a24a14d4d07de516790;hp=dc95b4cadda7329d0d4041820a11af3ffd3a44e4;hpb=e4890b5bf9e2260b36bcc36ddb77d8e97e2abe7d;p=notmuch diff --git a/util/crypto.h b/util/crypto.h index dc95b4ca..1a90f0e0 100644 --- a/util/crypto.h +++ b/util/crypto.h @@ -5,6 +5,10 @@ #include "gmime-extra.h" #include "notmuch.h" +#ifdef __cplusplus +extern "C" { +#endif + typedef struct _notmuch_crypto { bool verify; notmuch_decryption_policy_t decrypt; @@ -16,7 +20,8 @@ typedef struct _notmuch_crypto { } _notmuch_crypto_t; GMimeObject * -_notmuch_crypto_decrypt (notmuch_decryption_policy_t decrypt, +_notmuch_crypto_decrypt (bool *attempted, + notmuch_decryption_policy_t decrypt, notmuch_message_t *message, GMimeCryptoContext* crypto_ctx, GMimeMultipartEncrypted *part, @@ -33,4 +38,7 @@ _notmuch_crypto_get_gmime_ctx_for_protocol (_notmuch_crypto_t *crypto, void _notmuch_crypto_cleanup (_notmuch_crypto_t *crypto); +#ifdef __cplusplus +} +#endif #endif