2003-04-28 Marcus Brinkmann <marcus@g10code.de>
authorMarcus Brinkmann <mb@g10code.com>
Tue, 29 Apr 2003 00:54:11 +0000 (00:54 +0000)
committerMarcus Brinkmann <mb@g10code.com>
Tue, 29 Apr 2003 00:54:11 +0000 (00:54 +0000)
* context.h: Remove OPDATA_VERIFY_COLLECTING.
(struct gpgme_context_s): Remove member notation.
* gpgme.h: Make enum for GPGME_KEYLIST_MODE_* values.

gpgme/ChangeLog
gpgme/context.h
gpgme/gpgme.h

index c371ce3fe051dbb2ebb35ce05e51c7dcb0cfe62b..4634a6dadb14e4837370ecd808a082acf8288893 100644 (file)
@@ -1,5 +1,9 @@
 2003-04-28  Marcus Brinkmann  <marcus@g10code.de>
 
+       * context.h: Remove OPDATA_VERIFY_COLLECTING.
+       (struct gpgme_context_s): Remove member notation.
+       * gpgme.h: Make enum for GPGME_KEYLIST_MODE_* values.
+
        * gpgme.h (struct _gpgme_sig_notation): New structure.
        (GpgmeSigNotation): New type.
        (struct _gpgme_signature): New structure.
index 2b77e27622ddd9ae5a4329e4af2df9510d66292f..a73724f0ec673d58cf28fa9d14988ae650fea8b9 100644 (file)
@@ -1,4 +1,4 @@
-/* context.h
+/* context.h - Definitions for a GPGME context.
    Copyright (C) 2000 Werner Koch (dd9jn)
    Copyright (C) 2001, 2002, 2003 g10 Code GmbH
 
@@ -34,7 +34,7 @@ typedef enum
   {
     OPDATA_DECRYPT, OPDATA_SIGN, OPDATA_ENCRYPT, OPDATA_PASSPHRASE,
     OPDATA_IMPORT, OPDATA_GENKEY, OPDATA_KEYLIST, OPDATA_EDIT,
-    OPDATA_VERIFY_COLLECTING, OPDATA_VERIFY
+    OPDATA_VERIFY, OPDATA_TRUSTLIST
   } ctx_op_data_type;
 
 struct ctx_op_data
@@ -102,8 +102,6 @@ struct gpgme_context_s
   /* The operation data hooked into the context.  */
   struct ctx_op_data *op_data;
 
-  /* Last signature notation.  */
-  GpgmeData notation;
   /* Last operation info.  */
   GpgmeData op_info;
 
index 4ee92121177f18020533bf5222d5c4ad3d218c59..4909866c46d175574a91f951a3326d320ed7df7e 100644 (file)
@@ -21,7 +21,9 @@
 #ifndef GPGME_H
 #define GPGME_H
 
-#include <stdio.h> /* For FILE *.  */
+/* Include stdio.h for the FILE type definition.  */
+#include <stdio.h>
+
 #ifdef _MSC_VER
   typedef long off_t;
   typedef long ssize_t;
@@ -36,7 +38,7 @@ extern "C" {
 #endif
 #endif
 
-
+\f
 /* The version of this header should match the one of the library.  Do
    not use this symbol in your application, use gpgme_check_version
    instead.  The purpose of this macro is to let autoconf (using the
@@ -45,15 +47,15 @@ extern "C" {
    that for you!  */
 #define GPGME_VERSION "0.4.1"
 
-
+\f
 /* The opaque data types used by GPGME.  */
 
-/* The context holds some global state and configration options as
+/* The context holds some global state and configration options, as
    well as the results of a crypto operation.  */
 struct gpgme_context_s;
 typedef struct gpgme_context_s *GpgmeCtx;
 
-/* The data object used by GPGME to exchange arbitrary data.  */
+/* The data object is used by GPGME to exchange arbitrary data.  */
 struct gpgme_data_s;
 typedef struct gpgme_data_s *GpgmeData;
 
@@ -128,10 +130,11 @@ GpgmeError;
 #define GPGME_Invalid_Recipient        GPGME_Invalid_UserID
 #define GPGME_No_Passphrase    GPGME_Bad_Passphrase
 
+
 /* The possible encoding mode of GpgmeData objects.  */
 typedef enum
   {
-    GPGME_DATA_ENCODING_NONE   = 0,    /* I.e. not specified.  */
+    GPGME_DATA_ENCODING_NONE   = 0,    /* Not specified.  */
     GPGME_DATA_ENCODING_BINARY = 1,
     GPGME_DATA_ENCODING_BASE64 = 2,
     GPGME_DATA_ENCODING_ARMOR  = 3     /* Either PEM or OpenPGP Armor.  */
@@ -197,6 +200,7 @@ typedef enum
   }
 GpgmeSigMode;
 
+
 /* The available key and signature attributes.  */
 typedef enum
   {
@@ -247,6 +251,7 @@ typedef enum
   }
 GpgmeValidity;
 
+
 /* The available protocols.  */
 typedef enum
   {
@@ -342,11 +347,6 @@ typedef enum
   }
 GpgmeStatusCode;
 
-/* The available keylist mode flags.  */
-#define GPGME_KEYLIST_MODE_LOCAL  1
-#define GPGME_KEYLIST_MODE_EXTERN 2
-#define GPGME_KEYLIST_MODE_SIGS   4
-
 /* The engine information structure.  */
 struct _gpgme_engine_info
 {
@@ -381,6 +381,7 @@ typedef void (*GpgmeProgressCb) (void *opaque, const char *what,
 typedef GpgmeError (*GpgmeEditCb) (void *opaque, GpgmeStatusCode status,
                                   const char *args, const char **reply);
 
+\f
 /* Context management functions.  */
 
 /* Create a new context and return it in CTX.  */
@@ -416,6 +417,14 @@ void gpgme_set_include_certs (GpgmeCtx ctx, int nr_of_certs);
 /* Return the number of certs to include in an S/MIME message.  */
 int gpgme_get_include_certs (GpgmeCtx ctx);
 
+/* The available keylist mode flags.  */
+enum
+  {
+    GPGME_KEYLIST_MODE_LOCAL  = 1,
+    GPGME_KEYLIST_MODE_EXTERN = 2,
+    GPGME_KEYLIST_MODE_SIGS   = 4
+  };
+
 /* Set keylist mode in CTX to MODE.  */
 GpgmeError gpgme_set_keylist_mode (GpgmeCtx ctx, int mode);
 
@@ -534,7 +543,7 @@ void gpgme_get_io_cbs (GpgmeCtx ctx, struct GpgmeIOCbs *io_cbs);
    the pending operation to finish.  */
 GpgmeCtx gpgme_wait (GpgmeCtx ctx, GpgmeError *status, int hang);
 
-
+\f
 /* Functions to handle recipients.  */
 
 /* Create a new recipients set and return it in R_RSET.  */
@@ -568,7 +577,7 @@ const char *gpgme_recipients_enum_read (const GpgmeRecipients rset,
 GpgmeError gpgme_recipients_enum_close (const GpgmeRecipients rset,
                                        void **iter);
 
-
+\f
 /* Functions to handle data objects.  */
 
 /* Read up to SIZE bytes into buffer BUFFER from the data object with
@@ -672,7 +681,7 @@ GpgmeError gpgme_data_new_from_filepart (GpgmeData *r_dh,
    gpgme_data_seek instead.  */
 GpgmeError gpgme_data_rewind (GpgmeData dh);
 
-
+\f
 /* Key and trust functions.  */
 
 /* Get the key with the fingerprint FPR from the key cache or from the
@@ -1097,7 +1106,7 @@ GpgmeError gpgme_get_engine_info (GpgmeEngineInfo *engine_info);
 /* Return a string describing ERR.  */
 const char *gpgme_strerror (GpgmeError err);
 
-
+\f
 /* Engine support functions.  */
 
 /* Verify that the engine implementing PROTO is installed and