diff options
Diffstat (limited to 'gpgmeplug/cryptplug.h')
| -rw-r--r-- | gpgmeplug/cryptplug.h | 18 | 
1 files changed, 14 insertions, 4 deletions
| diff --git a/gpgmeplug/cryptplug.h b/gpgmeplug/cryptplug.h index 428483a3..5cc665f2 100644 --- a/gpgmeplug/cryptplug.h +++ b/gpgmeplug/cryptplug.h @@ -913,12 +913,22 @@ bool signMessage( const char* cleartext,  /*! \ingroup groupSignAct -    Dummy!!  To be replaced by real structure information... + */ +struct SignatureMetaDataExtendedInfo +{ +    struct tm* creation_time; +    char* status_text; +    char* fingerprint; +}; + +/*! \ingroup groupSignAct  */  struct SignatureMetaData { -  char* status; -  char* extStatus; -  char* nota_xml; +    char* status; +    struct SignatureMetaDataExtendedInfo* extended_info; +    int extended_info_count; +    char* nota_xml; +    int status_code;  };  /*! \ingroup groupSignAct | 
