diff options
author | Marcus Brinkmann <[email protected]> | 2002-02-06 00:08:47 +0000 |
---|---|---|
committer | Marcus Brinkmann <[email protected]> | 2002-02-06 00:08:47 +0000 |
commit | 4fa30089501b479a5e57086c8ce3de7c90c5dff1 (patch) | |
tree | 5e0e8b2343cfb2ee6cd2fa5d3e4fad5e8018ff40 /NEWS | |
parent | 2002-02-02 Marcus Brinkmann <[email protected]> (diff) | |
download | gpgme-4fa30089501b479a5e57086c8ce3de7c90c5dff1.tar.gz gpgme-4fa30089501b479a5e57086c8ce3de7c90c5dff1.zip |
doc/
2002-02-06 Marcus Brinkmann <[email protected]>
* gpgme.texi (Key Listing Mode): Update documentation.
gpgme/
2002-02-06 Marcus Brinkmann <[email protected]>
* gpgme.c (gpgme_set_keylist_mode): Possibly return an error
value.
(gpgme_get_keylist_mode): New function.
(gpgme_new): Set the default for keylist_mode member of CTX.
* gpgme.h (gpgme_set_keylist_mode): Fix prototype.
(gpgme_get_keylist_mode): New prototype.
(GPGME_KEYLIST_MODE_LOCAL): New macro.
(GPGME_KEYLIST_MODE_EXTERN): Likewise..
Diffstat (limited to 'NEWS')
-rw-r--r-- | NEWS | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -1,5 +1,14 @@ * There is a Texinfo manual documenting the API. + * The gpgme_set_keylist_mode function returns an error, and changed + its meaning. It is no longer usable to select between normal and + fast mode (newer versions of GnuPG will always be fast), but + selects between local keyring, remote keyserver, or both. + For this, two new macros are defined, GPGME_KEYLIST_MODE_LOCAL + and GPGME_KEYLIST_MODE_EXTERN. To make it possible to modify the + current setting, a fucntion gpgme_get_keylist_mode was added to + retrieve the current mode. + * The LENGTH argument to gpgme_data_new_from_filepart changed its type from off_t to the unsigned size_t. @@ -18,6 +27,11 @@ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ gpgme_data_new_from_filepart CHANGED: Type of LENGTH is size_t. GpgmePassphraseCb CHANGED: Type of R_HD is void **. +gpgme_set_keylist_mode CHANGED: Type of return value is GpgmeError. + The function has a new meaning! +gpgme_get_keylist_mode NEW +GPGME_KEYLIST_MODE_LOCAL NEW +GPGME_KEYLIST_MODE_EXTERN NEW gpgme_op_trustlist_next NEW GpgmeIdleFunc NEW gpgme_register_idle NEW |