diff options
author | Marcus Brinkmann <[email protected]> | 2005-07-27 01:50:08 +0000 |
---|---|---|
committer | Marcus Brinkmann <[email protected]> | 2005-07-27 01:50:08 +0000 |
commit | 7bdaf53a4a4ce97007c3d919328a1225e506dc54 (patch) | |
tree | 29d875901010b97d2d0257fdcca49d846d5fae65 /doc/gpgme.texi | |
parent | 2005-07-26 Marcus Brinkmann <[email protected]> (diff) | |
download | gpgme-7bdaf53a4a4ce97007c3d919328a1225e506dc54.tar.gz gpgme-7bdaf53a4a4ce97007c3d919328a1225e506dc54.zip |
doc/
2005-07-27 Marcus Brinkmann <[email protected]>
* gpgme.texi (Decrypt): Add plaintext_filename to
gpgme_decrypt_result_t.
(Verify): Likewise for gpgme_verify_result_t.
gpgme/
2005-07-27 Marcus Brinkmann <[email protected]>
* gpgme.h (gpgme_status_code_t): Add GPGME_STATUS_PLAINTEXT.
(struct _gpgme_op_decrypt_result): New member plaintext_filename.
(struct _gpgme_op_verify_result): Likewise.
* ops.h (_gpgme_parse_plaintext): Add prototype.
* op-support.c (_gpgme_parse_plaintext): New function.
* decrypt.c (release_op_data): Release
OPD->result.plaintext_filename.
(_gpgme_decrypt_status_handler): Handle GPGME_STATUS_PLAINTEXT.
* verify.c (release_op_data): Release
OPD->result.plaintext_filename.
(_gpgme_verify_status_handler): Handle GPGME_STATUS_PLAINTEXT.
Diffstat (limited to '')
-rw-r--r-- | doc/gpgme.texi | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/gpgme.texi b/doc/gpgme.texi index d5c14de4..61d56b71 100644 --- a/doc/gpgme.texi +++ b/doc/gpgme.texi @@ -3668,6 +3668,10 @@ This is true if the key was not used according to its policy. @item gpgme_recipient_t recipient This is a linked list of recipients to which this message was encrypted. + +@item char *plaintext_filename +This is the filename of the original plaintext message file if it is +known, otherwise this is a null pointer. @end table @end deftp @@ -3880,6 +3884,10 @@ a @code{NULL} pointer. The structure contains the following member: @item gpgme_signature_t signatures A linked list with information about all signatures for which a verification was attempted. + +@item char *plaintext_filename +This is the filename of the original plaintext message file if it is +known, otherwise this is a null pointer. @end table @end deftp |