diff options
Diffstat (limited to 'trunk/gpgme/gpgme.h')
-rw-r--r-- | trunk/gpgme/gpgme.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/trunk/gpgme/gpgme.h b/trunk/gpgme/gpgme.h index 4d89984a..b48ffc3d 100644 --- a/trunk/gpgme/gpgme.h +++ b/trunk/gpgme/gpgme.h @@ -44,7 +44,7 @@ extern "C" { * let autoconf (using the AM_PATH_GPGME macro) check that this * header matches the installed library. * Warning: Do not edit the next line. configure will do that for you! */ -#define GPGME_VERSION "0.2.3" +#define GPGME_VERSION "0.2.3a" @@ -153,6 +153,12 @@ typedef enum { } GpgmeValidity; +typedef enum { + GPGME_PROTOCOL_OpenPGP = 0, /* default */ + GPGME_PROTOCOL_CMS = 1, + GPGME_PROTOCOL_AUTO = 2 +} GpgmeProtocol; + typedef const char *(*GpgmePassphraseCb)(void*, const char *desc, void *r_hd); typedef void (*GpgmeProgressCb)(void *opaque, |