X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=mutt_crypt.h;h=e9713f4c09e38c4a10e042e9c311696b2df195cc;hp=8d64d35bfa68d856e10fdcde44d20a836e5527ac;hb=b68ee108ca7aed9fd3fdfe5eefc1cf284a32fb17;hpb=4eaac5c4a87b84ea9ec0668b4e088ac27e2d1106 diff --git a/mutt_crypt.h b/mutt_crypt.h index 8d64d35..e9713f4 100644 --- a/mutt_crypt.h +++ b/mutt_crypt.h @@ -16,7 +16,7 @@ #ifndef MUTT_CRYPT_H #define MUTT_CRYPT_H -#include "mutt.h" /* Need this to declare BODY, ADDRESS. STATE etc. */ +#include "mutt.h" /* Need this to declare BODY, address_t. STATE etc. */ #include "state.h" /* FIXME: They should be pointer to anonymous structures for better @@ -169,7 +169,7 @@ int crypt_pgp_application_pgp_handler (BODY * m, STATE * s); int crypt_pgp_encrypted_handler (BODY * a, STATE * s); /* fixme: needs documentation. */ -void crypt_pgp_invoke_getkeys (ADDRESS * addr); +void crypt_pgp_invoke_getkeys (address_t * addr); /* Ask for a PGP key. */ pgp_key_t crypt_pgp_ask_for_key (char *tag, char *whatfor, @@ -189,7 +189,7 @@ BODY *crypt_pgp_make_key_attachment (char *tempf); /* This routine attempts to find the keyids of the recipients of a message. It returns NULL if any of the keys can not be found. */ -char *crypt_pgp_findkeys (ADDRESS * to, ADDRESS * cc, ADDRESS * bcc); +char *crypt_pgp_findkeys (address_t * to, address_t * cc, address_t * bcc); /* Create a new body with a PGP signed message from A. */ BODY *crypt_pgp_sign_message (BODY * a); @@ -239,7 +239,7 @@ char *crypt_smime_ask_for_key (char *prompt, char *mailbox, short public); /* This routine attempts to find the keyids of the recipients of a message. It returns NULL if any of the keys can not be found. */ -char *crypt_smime_findkeys (ADDRESS * to, ADDRESS * cc, ADDRESS * bcc); +char *crypt_smime_findkeys (address_t * to, address_t * cc, address_t * bcc); /* fixme: Needs documentation. */ BODY *crypt_smime_sign_message (BODY * a);