diff options
author | Marcus Brinkmann <[email protected]> | 2002-01-30 21:52:32 +0000 |
---|---|---|
committer | Marcus Brinkmann <[email protected]> | 2002-01-30 21:52:32 +0000 |
commit | 088c044792fd352b0dcb00bb31cc40aec38d3ebf (patch) | |
tree | 882efe2956153087bf90748dfb7616d7e57b95ab /doc | |
parent | Be a bit clearer. (diff) | |
download | gpgme-088c044792fd352b0dcb00bb31cc40aec38d3ebf.tar.gz gpgme-088c044792fd352b0dcb00bb31cc40aec38d3ebf.zip |
doc/
2002-01-30 Marcus Brinkmann <[email protected]>
* gpgme.texi (Importing Keys): Add reference to gpgme_get_op_info.
gpgme/
2002-01-30 Marcus Brinkmann <[email protected]>
* import.c (struct import_result_s): New structure.
(_gpgme_release_import_result): New function.
(append_xml_impinfo): Likewise.
(import_status_handler): Implement.
* gpgme.c (_gpgme_release_result): Add call to
_gpgme_release_import_result.
* ops.h (_gpgme_release_impoer_result): Add prototype.
* types.h (ImportResult): New type.
* context.h (gpgme_context_s): Add ImportResult to member result.
* encrypt.c (gpgme_op_encrypt): Code clean up.
tests/
2002-01-30 Marcus Brinkmann <[email protected]>
* gpg/t-import.c (print_op_info): New function.
(main): Use it.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ChangeLog | 4 | ||||
-rw-r--r-- | doc/gpgme.texi | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/doc/ChangeLog b/doc/ChangeLog index c3850209..bfe382e2 100644 --- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -1,5 +1,9 @@ 2002-01-30 Marcus Brinkmann <[email protected]> + * gpgme.texi (Importing Keys): Add reference to gpgme_get_op_info. + +2002-01-30 Marcus Brinkmann <[email protected]> + * gpgme.texi: Some spell checking. 2002-01-30 Marcus Brinkmann <[email protected]> diff --git a/doc/gpgme.texi b/doc/gpgme.texi index e4731270..44b69970 100644 --- a/doc/gpgme.texi +++ b/doc/gpgme.texi @@ -1529,6 +1529,9 @@ The function @code{gpgme_op_import} adds the keys in the data buffer The format of @var{keydata} can be @var{ASCII} armored, for example, but the details are specific to the crypto engine. +More information about the import is available with +@code{gpgme_get_op_info}. @xref{Detailed Results}. + The function returns @code{GPGME_No_Error} if the import was completed successfully, @code{GPGME_Invalid_Value} if @var{keydata} if @var{ctx} or @var{keydata} is not a valid pointer, and @code{GPGME_No_Data} if |