diff options
author | Werner Koch <[email protected]> | 2002-03-07 19:49:40 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2002-03-07 19:49:40 +0000 |
commit | a86b6932a93c4796174702b048f6f4129e11d36c (patch) | |
tree | b2c64b24c8681de1e995d73a6bea65efb39f1aba | |
parent | encryptMessage() now accepts a comma separated list of addressees (diff) | |
download | gpgme-a86b6932a93c4796174702b048f6f4129e11d36c.tar.gz gpgme-a86b6932a93c4796174702b048f6f4129e11d36c.zip |
* gpgme.h (gpgme_op_keylist_ext_start): Add prototype.
-rw-r--r-- | gpgme/ChangeLog | 4 | ||||
-rw-r--r-- | gpgme/gpgme.h | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/gpgme/ChangeLog b/gpgme/ChangeLog index f5272153..53fa0990 100644 --- a/gpgme/ChangeLog +++ b/gpgme/ChangeLog @@ -1,3 +1,7 @@ +2002-03-07 Werner Koch <[email protected]> + + * gpgme.h (gpgme_op_keylist_ext_start): Add prototype. + 2002-03-06 Marcus Brinkmann <[email protected]> * encrypt.c (_gpgme_encrypt_sym_status_handler): New function. diff --git a/gpgme/gpgme.h b/gpgme/gpgme.h index b50e25f4..12db1aee 100644 --- a/gpgme/gpgme.h +++ b/gpgme/gpgme.h @@ -502,6 +502,8 @@ GpgmeError gpgme_op_delete (GpgmeCtx ctx, const GpgmeKey key, returned. */ GpgmeError gpgme_op_keylist_start (GpgmeCtx ctx, const char *pattern, int secret_only); +GpgmeError gpgme_op_keylist_ext_start (GpgmeCtx ctx, const char *pattern[], + int secret_only, int reserved); /* Return the next key from the keylist in R_KEY. */ GpgmeError gpgme_op_keylist_next (GpgmeCtx ctx, GpgmeKey *r_key); |