2003-05-04 Marcus Brinkmann <marcus@g10code.de>
* gpgme.h (GpgmeError): Add deprecated values for GPGME_Invalid_Type and GPGME_Invalid_Mode.
This commit is contained in:
parent
102e973a9b
commit
e95998f0a0
5
NEWS
5
NEWS
@ -124,6 +124,9 @@ Noteworthy changes in version 0.4.1 (unreleased)
|
|||||||
interface, the generic gpgme_get_op_info interface is not useful
|
interface, the generic gpgme_get_op_info interface is not useful
|
||||||
anymore and dropped.
|
anymore and dropped.
|
||||||
|
|
||||||
|
* The error values GPGME_Invalid_Type and GPGME_Invalid_Mode can not
|
||||||
|
occur anymore and are thus deprecated.
|
||||||
|
|
||||||
* Interface changes relative to the 0.4.0 release:
|
* Interface changes relative to the 0.4.0 release:
|
||||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
GpgmeIOCb CHANGED: Return type from void to GpgmeError.
|
GpgmeIOCb CHANGED: Return type from void to GpgmeError.
|
||||||
@ -193,6 +196,8 @@ gpgme_key_get_as_xml REMOVED
|
|||||||
GpgmeKeyListResult NEW
|
GpgmeKeyListResult NEW
|
||||||
gpgme_op_keylist_result NEW
|
gpgme_op_keylist_result NEW
|
||||||
gpgme_get_op_info REMOVED
|
gpgme_get_op_info REMOVED
|
||||||
|
GPGME_Invalid_Type DEPRECATED
|
||||||
|
GPGME_Invalid_Mode DEPRECATED
|
||||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
Noteworthy changes in version 0.4.0 (2002-12-23)
|
Noteworthy changes in version 0.4.0 (2002-12-23)
|
||||||
|
1
TODO
1
TODO
@ -25,6 +25,7 @@ Hey Emacs, this is -*- outline -*- mode!
|
|||||||
*** gpgme_trust_item_get_string_attr
|
*** gpgme_trust_item_get_string_attr
|
||||||
*** gpgme_trust_item_get_ulong_attr
|
*** gpgme_trust_item_get_ulong_attr
|
||||||
*** GpgmeAttr
|
*** GpgmeAttr
|
||||||
|
*** GPGME_Invalid_Type, GPGME_Invalid_Mode
|
||||||
|
|
||||||
* Thread support:
|
* Thread support:
|
||||||
** Build thread modules for static linking (which just suck in the
|
** Build thread modules for static linking (which just suck in the
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
2003-05-04 Marcus Brinkmann <marcus@g10code.de>
|
||||||
|
|
||||||
|
* gpgme.h (GpgmeError): Add deprecated values for
|
||||||
|
GPGME_Invalid_Type and GPGME_Invalid_Mode.
|
||||||
|
|
||||||
2003-04-30 Marcus Brinkmann <marcus@g10code.de>
|
2003-04-30 Marcus Brinkmann <marcus@g10code.de>
|
||||||
|
|
||||||
* gpgme.h (gpgme_get_op_info): Remove prototype.
|
* gpgme.h (gpgme_get_op_info): Remove prototype.
|
||||||
|
@ -116,7 +116,9 @@ typedef enum
|
|||||||
|
|
||||||
/* Deprecated. */
|
/* Deprecated. */
|
||||||
GPGME_Busy = -2,
|
GPGME_Busy = -2,
|
||||||
GPGME_No_Request = -3
|
GPGME_No_Request = -3,
|
||||||
|
GPGME_Invalid_Type = -4,
|
||||||
|
GPGME_Invalid_Mode = -5
|
||||||
}
|
}
|
||||||
GpgmeError;
|
GpgmeError;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user